// JavaScript Document
$(function(){
$('#email>h2').bind('click',testIt);
});
function testIt(){
if (testEmail() )
$.post("http://www.dpwebdesignstudio.com/cgi-bin/bnbform.cgi",$('#form1').serializeArray(),callIt );
}
function callIt(){
$('#email-here').text('Thank you.');
}
function testEmail(){
if (document.forms[0].elements[1].value =="" ){
alert ("The e-mail field is blank. \n\nPlease enter your email address.");
document.forms[0].elements[0].focus();
return false;
}
if (document.forms[0].elements[0].value.indexOf ('@',0) == -1 || document.forms[0].elements[0].value.indexOf ('.',0)==-1) {
alert ("\n The field requires a \"@\" and a \".\" be used.\n\nPlease re-enter your E-mail address.");
document.forms[0].elements[0].select();
document.forms[0].elements[0].focus();
return false;
}
return true;
}
