//=====================================================================||
//       Copyright 2008 Fencl Web Design.Com, LLC Easy Captcha         ||  
//       This script may not be copied or sold.                        ||
//       There is no warranty provided with this script.               ||
//       May not work on all platforms. Use at your own risk.          ||  
//=====================================================================||
var timeis = new Date();
var hhh = timeis.getHours();
var mmm = timeis.getMinutes();
var sss = timeis.getSeconds();	 
nowtime = hhh+""+mmm+""+sss;


function CheckForm( numform )
{
	var numChecks = false;
	var numMessage = "";
	
	if( numform.name.value == '' ){
		numChecks = true;
		numMessage += "     Please Include Your Name\n";
	}

	if( numform.checknumber.value != nowtime ){
		numChecks = true;
		numMessage += "     Please Include The Number\n";
	}
	if( numform.email.value == '' ){
		numChecks = true;
		numMessage += "     Please Include Your Email Address\n";
	} 
	
	if( numform.phone.value == '' ){
		numChecks = true;
		numMessage += "     Please Include Your Phone\n";
	}
			
	if( numChecks ) {
		alert( "I'm sorry, but you must fill in the following information before continuing:\n" + numMessage );
		return false;
	}
	
	return true;
}
