function CheckForm( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( theform.name_from.value == '' ){
		bMissingFields = true;
		strFields += "   Name\n";
	}
	if( theform.email_from.value == '' ){
		bMissingFields = true;
		strFields += "   Email Address\n";
	}
	
	if( theform.phone.value == '' ){
		bMissingFields = true;
		strFields += "   Phone Number\n";
	}
	
	if( theform.security_code.value == '' ){
		bMissingFields = true;
		strFields += "   Security Code\n";
	}


	if( bMissingFields ) {
		alert( "I'm sorry, but you must provide the following field(s) before continuing:\n\n" + strFields );
		return false;
	}
	
	return true;
}

