function validate() {
errorMsg = '';
if (document.RFPform.fnamevar.value == '')
errorMsg += ' - First Name is Missing \n';

if (document.RFPform.lnamevar.value == '')
errorMsg += ' - Last Name is Missing \n';

if (document.RFPform.emailaddy.value == '')
errorMsg += ' - Email Address is Missing \n';

if (document.RFPform.questioncomments.value == '')
errorMsg += ' - Please provide a comment or question. \n';





if (errorMsg != '') {
alert("Please provide the following information: \n\n" + errorMsg);
return(false);
}


}



function repopulate() {
document.form.password.value  = document.form.password2.value;
}


