<!-- All Rights Reserved Copyright 2003 Bipolar Family
// http://www.bipolarfamily.com
var submitcount=0;
function ckFd() {
missinginfo = "";
if (document.rlife.email.value == "") {
missinginfo += "\n     -  Email Address";
}
if (document.rlife.realname.value == "") {
missinginfo += "\n     -  Name";
}
if (document.rlife.storysummary.value == "") {
missinginfo += "\n     -  Story Summary";
}
if (document.rlife.storysummary.value == "Summary Here") {
missinginfo += "\n     -  Story Summary";
}
if (document.rlife.storycategory.options[document.rlife.storycategory.selectedIndex].value == "") {
missinginfo += "\n     -  Select Story Category";
}
if (document.rlife.experience.options[document.rlife.experience.selectedIndex].value == "") {
missinginfo += "\n     -  Experience of the Site";
}
if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"You failed to correctly fill in your:\n" +
missinginfo + "\n_____________________________" +
"\nPlease re-enter and submit again!";
alert(missinginfo);
return false;
}
else
{
if (submitcount == 0)
{
submitcount++;
return true;
}
else
{
alert("You've already submitted this check, please wait for our database to update. Thank You!");
return false;
}
}
}
//  End -->