<!--
function VerifyData(frmReferral)
 {
formOk = true;
errorMsg = "";

if (frmReferral.txtFromName.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (frmReferral.txtFromEmail.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (frmReferral.txtToEmail.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (!formOk) {
alert(errorMsg);
}

return formOk;
} 
//-->







