<!--
function checkFields() {

if (document.f1.name.value=="")
{
 alert("Please enter your Name!");
 document.f1.name.focus();
 return false;
}

  if (f1.email.value == "" || f1.email.value.length < 8)
	{
	alert("Please write your email address in the \"Email\" field.");
	f1.email.focus();
	return false;
	}

}

-->
