function chkFormular()	{	if(document.formular.realname.value == "")		{        alert("Bitte Ihren Namen eingeben!");        document.formular.realname.focus();        return false;		}		if(document.formular.email.value == "")		{	   	alert("Bitte Ihre email-Adresse eingeben!");       	document.formular.email.focus();       	return false;       	}	if(document.formular.email.value.indexOf('@') == -1)		{        alert("Die email-Adresse stimmt nicht!");        document.formular.email.focus();        return false;       	}	if(document.formular.email.value.indexOf('.') == -1)       	{       	alert("Die email-Adresse stimmt nicht!");       	document.formular.email.focus();       	return false;		}	m=document.formular.message.value;	if (m.length<20 || m.lastIndexOf(" ")<20)  		{ 		alert ('Kein sinnvoller Text!'); 		return false; 		}	}  function getAddress(recipient) 	{ 	var s1 = "info";	var s2 = "@";	var s3 = "o-ton-av";	var s4 = ".de"; 	document.formular.recipient.value = s1+s2+s3+s4;	}