<!-- All Rights Reserved Copyright 2008 OceanVoyage.com
// http://www.yumarealestatepros.com
var submitcount=0;
function ckFd() {
missinginfo = "";
if (document.yrepcont.message.value == "") {
missinginfo += "\n     -  Your Message";
}
if (document.yrepcont.name.value == "") {
missinginfo += "\n     -  Name";
}
if (document.yrepcont.email.value == "") {
missinginfo += "\n     -  Email Address";
}
if (document.yrepcont.cmethod.options[document.yrepcont.cmethod.selectedIndex].value == "") {
missinginfo += "\n     -  Method of Contact";
}
if (document.yrepcont.e1.options[document.yrepcont.e1.selectedIndex].value == "") {
missinginfo += "\n     -  Individual to Contact";
}
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 form, please wait for our database to update. Thank You!");
return false;
}
}
}
//  End -->