
function MM_goToURL() 
{ //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function validate_list( ) 
{ 
   if (document.form1.WasteMenu.options[document.form1.WasteMenu.options.selectedIndex].value == "Chemical")
   {
           MM_goToURL('parent','chemical-waste.htm');
		   return document.MM_returnValue;
   }
   if (document.form1.WasteMenu.options[document.form1.WasteMenu.options.selectedIndex].value == "LightTubes")
   {
           MM_goToURL('parent','fluorescent-light-tube-disposal.htm');
		   return document.MM_returnValue;
   }
   if (document.form1.WasteMenu.options[document.form1.WasteMenu.options.selectedIndex].value == "Clinical")
   {
           MM_goToURL('parent','clinical-pharmaceutical-waste.htm');
		   return document.MM_returnValue;
   }
   if (document.form1.WasteMenu.options[document.form1.WasteMenu.options.selectedIndex].value == "IT")
   {
           MM_goToURL('parent','it-computer-recycling-disposal.htm');
		   return document.MM_returnValue;
   }
      if (document.form1.WasteMenu.options[document.form1.WasteMenu.options.selectedIndex].value == "Shredding")
   {
           MM_goToURL('parent','secure-shredding-waste-disposal.htm');
		   return document.MM_returnValue;
   }     
   else
   {
       alert("Please select an option from the list");
           return document.MM_returnValue;
   }
}

