function sendform() {
	$("picLoading").style.display = "block";
	$("cntContact").style.display = "none";
	var b_valid = true;
	var fldFname = $F("fldFname");
	var fldLname = $F("fldLname");
	var fldAddress = $F("fldAddress");
	var fldCity = $F("fldCity");
	var fldState = $F("fldState");
	var fldZip = $F("fldZip");
	var fldEmail = $F("fldEmail");
	var fldReceive = "Email";
	if ($("fldReceive_2").checked) { fldReceive = "US Mail" }
	var fldEPA = $("fldEPA").checked;
	//
	// validate
	if (!validate("t",true,fldFname,"fldFname","lblFname")) { b_valid = false; }
	if (!validate("t",true,fldLname,"fldLname","lblLname")) { b_valid = false; }
	if (!validate("t",true,fldAddress,"fldAddress","lblAddress")) { b_valid = false; }
	if (!validate("t",true,fldCity,"fldCity","lblCity")) { b_valid = false; }
	if (!validate("t",true,fldState,"fldState","lblState")) { b_valid = false; }
	if (!validate("z",true,fldZip,"fldZip","lblZip")) { b_valid = false; }
	if (!validate("e",true,fldEmail,"fldEmail","lblEmail")) { b_valid = false; }
	if (b_valid) {
		var url = "scripts/serverside/code_optin.asp";
		var data="fname="+fldFname;
		data+="&lname="+fldLname;
		data+="&address="+fldAddress;
		data+="&city="+fldCity;
		data+="&st="+fldState;
		data+="&zip="+fldZip;
		data+="&email="+fldEmail;
		data+="&receive="+fldReceive;
		data+="&epa="+fldEPA;
		data+="&sid="+Math.random();
		var myAjax = new Ajax.Request(url,{asynchronous:true, method:'post',parameters:encodeURI(data), onSuccess:sendreqSC, onFailure:errFunc});
	} else {
		$("picLoading").style.display = "none";
		$("cntContact").style.display = "block";
		alert("Please review the fields highlighted in red as they are required");
	}
}

function sendreqSC(t) {
	$("picLoading").style.display = "none";
	if (t.responseText == "success") {
		window.location = "response.asp";
	} else if (t.responseText == "duplicate") {
		$("cntContact").innerHTML = "<p class=\"response\">Thank you for your interest in the Diamond Shamrock Community Relations Team. Our records indicate you are already on our mailing list. If you have questions or would like to make changes to your account, please contact Teri Heer at <a href=\"mailto:teri.heer@epa.state.oh.us\">teri.heer@epa.state.oh.us</a>.";
		$("cntContact").style.paddingBottom = "90px";
		$("cntContact").style.display = "block";
	} else {
		$("cntContact").innerHTML = "<p class=\"response\">There was an error when trying to forward your request.  Please contact Teri Heer at <a href=\"mailto:teri.heer@epa.state.oh.us\">teri.heer@epa.state.oh.us</a> for immediate assistance, or <a href='optin.asp'>click here to try again</a>.</p>"
		$("cntContact").style.paddingBottom = "140px";
		$("cntContact").style.display = "block";
	}
}