<!--

function chkFormular()
{

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


}
//-->