function verifyEpioneForm_new() {
	
	if(document.epSignup.fields_fname.value=="" || document.epSignup.fields_fname.value=="First Name" ){
		alert("please enter First Name");
		document.epSignup.fields_fname.focus();
		return false;
	}
	
	if(document.epSignup.fields_lname.value=="" || document.epSignup.fields_lname.value=="First Name" ){
		alert("please enter Last Name");
		document.epSignup.fields_lname.focus();
		return false;
	}
	
	if(document.epSignup.email.value=="" || document.epSignup.email.value=="Email Address" ){
		alert("please enter Email Address");
		document.epSignup.email.focus();
		return false;
	}
	
	if(document.epSignup.fields_phone.value=="" || document.epSignup.fields_phone.value=="3102716506" ){
		alert("please enter Phone");
		document.epSignup.fields_phone.focus();
		return false;
	}
  var ret = false;
  $('input[name="epioneTos"]').each(function(){
    ret = this.checked;
  });

  if(!ret) {
    alert("Before we can continue, you must agree to the terms and conditions,\n and then click on the check the box under the phone number input.");
  }

  return ret;
}

