function validate(theForm)
{
	if (theForm.cname && (theForm.cname.value == "") || theForm.cname && (theForm.cname.value == "Name"))
	{
	alert("Please Enter Name");
	theForm.cname.focus();
	return (false);
	}	
	if (theForm.cphno && (theForm.cphno.value == "") || theForm.cphno && (theForm.cphno.value == "Primary Telephone"))
	{
	alert("Please Enter Telephone Number");
	theForm.cphno.focus();
	return (false);
	}
	
	if (theForm.creq && (theForm.creq.value == "") || theForm.creq && (theForm.creq.value == "Comments"))
	{
	alert("Please Enter Comments");
	theForm.creq.focus();
	return (false);
	}
	
	if (theForm.cemail && (theForm.cemail.value == ""))
	{
	alert("U dient uw E-mail op te geven.");
	theForm.cemail.focus();
	return (false);
	}
	
	
	else{
		return true;
	}
}

