// JavaScript Document
function chex()
{

//for(i=0; i<document.form1.elements.length; i++)
	if (document.form1.fname.value==''||document.form1.fname.value=='fname')
		
		
	
	{
	alert('You must fill out Name field to proceed');
	document.form1.fname.focus();
	document.form1.fname.style.backgroundColor="#FF9900";
	return false;
	
	}
if (document.form1.email.value==''||document.form1.email.value=='email')
		
		
	
	{
	alert('You must fill out Email 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.message.value=='' ||document.form1.message.value=='comments')
		
		
	
	{
	alert('You must fill out this field to proceed');
	document.form1.comments.focus();
	document.form1.comments.style.backgroundColor="#FF9900";
	return false;
	
	}
*/		
}