<!--

function chkFormular()
{

	var f=document.mail;
		
	if(f.name.value=="") 
	{
		alert('Please fill in the Name');
		f.name.focus();
		return false;
	}
	
	
	if(f.email.value=="") 
	{
		alert('Please fill in the E-mail');
		f.email.focus();
		return false;
	}
	if(f.email.value != "") {
		if(f.email.value.indexOf('@') == -1) {
			alert("Please fill in a correct E-mail Address");
			f.email.focus();
			return false;
			}
		}
	
	if(f.comment.value=="") 
	{
		alert('Please fill in the Comment');
		f.comment.focus();
		return false;
	}


}
//-->