var icpForm3461 = document.getElementById('icpsignup3461');

if (document.location.protocol === "https:")

	icpForm3461.action = "https://app.icontact.com/icp/signup.php";
function verifyRequired3461() {
var checkEmail = icpsignup.fields_email.value;
  if (icpForm3461["fields_email"].value == "") {
    icpForm3461["fields_email"].focus();
    alert("The Email field is required.");
    return false;
  }
  
	if ((checkEmail.indexOf('@') < 0) || ((checkEmail.charAt(checkEmail.length-4) != '.') && (checkEmail.charAt(checkEmail.length-3) != '.')))
{alert("You have entered an invalid email address. Please try again.");
icpsignup.fields_email.select();
return false;
} 

return true;
}
