<!-- Begin
function checkFields() {
missinginfo = "";
if (document.form1.Organization.value == "")
if (document.form1.Type.selectedIndex<1) 
if (document.form1.Category.selectedIndex<1)
if (document.form1.Products.value == "") {
missinginfo += "\n     -  Organization\n" +
"        Or\n" +
"     -  Type (Manufacturer Importer Trader)\n" + 
"        Or\n" +
"     -  Category\n" +
"        Or\n" +
"     -  Product";
}
if (missinginfo != "") {
missinginfo ="_______________________________\n" +
"You failed to select any of the following:\n" +
missinginfo + "\n_______________________________" +
"\nPlease Select and submit again!";
alert(missinginfo);
return false;
}
return true;
}
//  End -->



