<!--
function finish(){
var given_name = document.forms.details.sender_name.value
if ((given_name == "")){
alert("Invalid name.");
document.forms.details.sender_name.focus();
return false;
}
var given_email = document.forms.details.email_address.value
if ((given_email == "")){
alert("Invalid email.");
document.forms.details.email_address.focus();
return false;
}
if ((given_email.indexOf('@') == -1) || (given_email.indexOf('.') == -1)){
alert("Invalid email");
document.forms.details.email_address.select();
document.forms.details.email_address.focus();
return false;
}
var given_address = document.forms.details.sender_address.value
if ((given_address == "")){
alert("Invalid address.");
document.forms.details.sender_address.focus();
return false;
}
var given_entry = document.forms.details.sender_entry.value
if ((given_entry == "")){
alert("Invalid entry.");
document.forms.details.sender_entry.focus();
return false;
}
if (confirm("You are about to email this form. Click OK to submit. CANCEL to abort.")){
alert("Your message has been received and now awaits approval. \nThank you for your time. Mislag ka, kabalen\n\n ---eK! (eksite.com)");document.forms.details.ekcycle.disabled=true;
//self.window.location.href='tnx.html' //activate this, and deactivate window.open, change target...
//window.open('http://us.1.p10.geocities.yahoo.com/forms?login=defect8','test1','top=0, left=0, directories=no,height=52,location=no, menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no,width=500');
return true;
}
else
alert("Abortion is supposed to be a crime in some states!");
return false;
}
//-->