function Validator(theForm)
{
	if (theForm.fname.value == "")
	{
	alert("Please enter your name.");
	theForm.fname.focus();
	return (false);
	}
	
	if (theForm.sname.value == "")
	{
	alert("Please enter your surname.");
	theForm.sname.focus();
	return (false);
	}
	
	if (theForm.fname.value == "")
	{
	alert("Please enter your name.");
	theForm.fname.focus();
	return (false);
	}
	
	if (theForm.prefcode.value == "")
	{
	alert("Please enter your contact number code.");
	theForm.prefcode.focus();
	return (false);
	}
	
	if (theForm.prefno.value == "")
	{
	alert("Please enter your preferred contact number.");
	theForm.prefno.focus();
	return (false);
	}
	
	if (theForm.altcode.value == "")
	{
	alert("Please enter your alternative contact number code.");
	theForm.altcode.focus();
	return (false);
	}
	
	if (theForm.altno.value == "")
	{
	alert("Please enter your alternative number.");
	theForm.altno.focus();
	return (false);
	}
	
	if (theForm.town.value == "")
	{
	alert("Please enter your town.");
	theForm.town.focus();
	return (false);
	}
	
	if (theForm.state.value == "")
	{
	alert("Please enter your province / state.");
	theForm.state.focus();
	return (false);
	}
	
	if (theForm.country.value == "")
	{
	alert("Please enter your country.");
	theForm.country.focus();
	return (false);
	}
	
	if (theForm.email.value == "")
	{
	alert("Please enter your email.");
	theForm.email.focus();
	return (false);
	}
	
	if (theForm.addr.value == "")
	{
	alert("Please enter your postal address.");
	theForm.addr.focus();
	return (false);
	}
	
	if (theForm.pcode.value == "")
	{
	alert("Please enter your postal code.");
	theForm.pcode.focus();
	return (false);
	}
	
	if (theForm.pcheck.value == "")
	{
	alert("Please enter in the validation (one word).");
	theForm.pcheck.focus();
	return (false);
	}
return (true);
}
