function Validate(theform)
{

if (theform.Name.value == "")
	{
	alert ("First Name is empty")
	theform.Name.focus() 
	return false;
	}

if (theform.LastName.value == "")
	{
	alert ("Last Name is empty")
	theform.LastName.focus() 
	return false;
	}

if (theform.customerno.value == "")
	{
	alert ("Customer Number is empty")
	theform.customerno.focus() 
	return false;
	}

if (theform.Email.value == "")
	{
	alert ("Email is empty")
	theform.Email.focus() 
	return false;
	}

if (theform.Verify.value == "")
	{
	alert ("Verify Email is empty")
	theform.Verify.focus() 
	return false;
	}

if (theform.Subject.value == "")
	{
	alert ("Verify Subject is empty")
	theform.Subject.focus() 
	return false;
	}

if (theform.Comments.value == "")
	{
	alert ("Please enter characters in the Comments field.")
	theform.Comments.focus() 
	return false;
	}

return true;
}