function chex()
{

//for(i=0; i<document.form1.elements.length; i++)
	if (document.form1.name.value==''||document.form1.name.value=='name')
		
		
	
	{
	alert('You must fill out this field to proceed');
	document.form1.name.focus();
	document.form1.name.style.backgroundColor="#FF9900";
	return false;
	
	}
if (document.form1.email.value==''||document.form1.email.value=='email')
		
		
	
	{
	alert('You must fill out this field to proceed');
	document.form1.email.focus();
	document.form1.email.style.backgroundColor="#FF9900";
	return false;
	
	}
if (document.form1.phone.value=='' ||document.form1.phone.value=='phone')
		
		
	
	{
	alert('You must fill out this field to proceed');
	document.form1.phone.focus();
	document.form1.phone.style.backgroundColor="#FF9900";
	return false;
	
	}
	if (document.form1.secure.value=='' ||document.form1.secure.value!='5LAW1')
		
		
	
	{
	alert('You must enter correct verification code');
	document.form1.secure.focus();
	document.form1.secure.style.backgroundColor="#FF9900";
	return false;
	
	}

		
}	
