function Validate(theform)
{

if (theform.name.value == "")
	{
	alert ("Name field is empty")
	theform.name.focus() 
	return false;
	}

if (theform.address.value == "")
	{
	alert ("Address field is empty")
	theform.address.focus() 
	return false;
	}
	
if (theform.home.value == "")
	{
	alert ("Phone field is empty")
	theform.home.focus() 
	return false;
	}
	
if (theform.email.value == "")
	{
	alert ("email field is empty")
	theform.email.focus() 
	return false;
	}


return true;
}