function go(WebID, PageID, E2PageID, Level)
{
document.location.href = "content.asp?WebID=" + WebID + "&PageID=" + PageID
return false;
}

function delForm(theform) {
theform.value = ""
}

function chkFormular()
{    
if(document.from.FromMail.value == "") 
{alert("Bitte Ihre E-Mail-Adresse eingeben!");
document.from.FromMail.focus();
return false;
}     

if((document.from.FromMail.value.indexOf('@') == -1) ||            
(document.from.FromMail.value.indexOf('.') == -1)) {
alert("Bitte eine gueltige E-Mail-Adresse angeben!");
document.from.FromMail.focus();
return false;
}
}	








