Find Your Home
If you're new here, you may want to subscribe to my RSS feed or Subscribe by email on the right. Thanks for visiting!
Please fill out the the below form and will contact you as quickly as possible with information requested.
.myForm td, input, select, textarea, checkbox { font-family: tahoma; font-size: 12px; }
.myForm { background-color: #E7EEF7; border: 1px solid #CCDCF2; padding: 10px; }
.required { color: red; }
function CheckMultiple4(frm, name) { for (var i=0; i < frm.length; i++) { fldObj = frm.elements[i]; fldId = fldObj.id; if (fldId) { var fieldnamecheck=fldObj.id.indexOf(name); if (fieldnamecheck != -1) { if (fldObj.checked) { return true; } } } } return false; } function CheckForm4(f) { if (f.email.value == "") { alert("Please enter your email address."); f.email.focus(); return false; }
if (f.format.selectedIndex == -1) { alert("Please choose a format to receive your email campaigns in"); f.format.focus(); return false; }
var fname = "CustomFields_3_4"; var fld = document.getElementById(fname); if (fld.value == "") { alert("Please enter a value for field First Name"); fld.focus(); return false; }
var fname = "CustomFields_4_4"; var fld = document.getElementById(fname); if (fld.value == "") { alert("Please enter a value for field Last Name"); fld.focus(); return false; }
return true; };

























