function validatePartnerForm() {
var themessage = "You are required to complete the following fields:\n\n";

if (document.partnerForm.company_name.value=="") {
themessage = themessage + "* Company Name\n";
}
if (document.partnerForm.contact_name.value=="") {
themessage = themessage + "* Contact Name\n";
}
if (document.partnerForm.contact_email.value=="") {
themessage = themessage + "* Contact Email\n";
}
if (document.partnerForm.partner_category.value=="") {
themessage = themessage + "* Partner Category\n";
}
if (document.partnerForm.partner_url.value=="") {
themessage = themessage + "* Website URL\n";
}
if (document.partnerForm.security_code.value=="") {
themessage = themessage + "* Security Code\n";
}
if (themessage == "You are required to complete the following fields:\n\n") {
document.partnerForm.submit();
}
else {
alert(themessage);
return false;
   }
}