
function form_check()
{
  var d = document.ContactForm;
  var errormsg = "";
  msg_Name ="You must fill in your Name";
  msg_Email ="You must fill in your Email address";
  msg_Phone ="You must fill in your Home OR Work Phone";
  msg_Addr1 ="You must fill in your Address";
  msg_City ="You must fill in your City Name";
  msg_State ="You must fill in your State Name";
  msg_Zip ="You must fill in your City Zip Code";
  msg_CCType ="You must select your Credit Card Type";
  msg_CCNum ="You must fill in your Credit Card Number";
  msg_CCExpMonth ="You must fill in your Credit Card Expiration Month";
  msg_CCExpYear ="You must fill in your Credit Card Expiration Year";
  
 	  
  if (d.NAME.value == ""){ errormsg=errormsg + msg_Name + "\r\n"; }
  if (d.EMAIL.value == ""){ errormsg=errormsg + msg_Email + "\r\n"; }
 
  if (errormsg != "")
  {
	  alert (errormsg);
	  return false;
  }


}
