function verify()
{
if (document.form.namefrom.value=="") {
alert("What is your name?");
document.form.namefrom.focus();
return false;
}
if (document.form.emailfrom.value=="") {
alert("You don't have an email?\n\nHow will I contact you then?");
document.form.emailfrom.focus();
return false;
}
if (document.form.messagefrom.value=="") {
alert("Oh come on, tell me something!");
document.form.messagefrom.focus();
return false;
}
else { document.form.submit();} 
}

function are_you_sure()
{
if(confirm('Come on ' + document.form.namefrom.value + ', you are almost done with this message.\n\nDo you really want to stop now?\n\n(YES = OK) (NO = CANCEL)')) history.go(document.form.referer.value);
else document.form.messagefrom.focus();
}

function are_you_serious()
{
if(confirm('You are kidding right?\n\nYou want to send THIS page to a friend???')) { alert("HAHAHA!!!\n\nYou are funny!\n\nHope your friend likes it."); window.location="sendpage.php?HTTP_REFERER=http://kissmyfloppy.pcmansf.com/pages/contact.php"; }
else alert("Heh, I thought so.");
}