<!-- 

// form validation script

function ValidateForm() 
{
if (document.form1.name.value == '') 
	{
	alert("You must give your name");
	document.form1.name.focus();
	return false;
}
if (document.form1.email.value == '') 
	{
	alert("You must give your email address");
	document.form1.email.focus();
	return false;
    }
return true
}

// End -->