
document.writeln('');
document.writeln('    <link rel="stylesheet" type="text/css" href="formatscreen.css">');
/* document.writeln('    <link rel=stylesheet media="screen" type="text/css" href="formatscreen.css">'); */
/* document.writeln('    <link rel=stylesheet media="print"  type="text/css" href="formatprint.css">' ); */
document.writeln('');
 

document.writeln('<script language="JavaScript">');
document.writeln('    <!--');
document.writeln('     function chkSubscriberEmail()');
document.writeln('     {');
document.writeln('        chkEmail=document.subscriberFormular.subscriberEmail.value.match(/@/g)');
document.writeln('        if ( ( chkEmail ) && ( chkEmail.length == 1 ) ) ');
document.writeln('        { ');
document.writeln('           return true;');
document.writeln('        }');
document.writeln('        else');
document.writeln('        {');
document.writeln('           alert("Keine E-Mail-Adresse!");')
document.writeln('           document.subscriberFormular.subscriberEmail.focus();');
document.writeln('           return false;');
document.writeln('        }');
document.writeln('     } /*  chkSubscriberEmail() */');
document.writeln('    //-->    ');
document.writeln('</script>');

function PageTitleObj(text)
{
	this.text=text;
}

function FadeIn()
{
 document.all.Picture.filters.revealTrans.Transition = 1;
 document.all.Picture.filters.revealTrans.Apply();
 document.all.Picture.style.visibility = "visible";
 document.all.Picture.filters.revealTrans.Play();
}