/* This fucntion is used to launch new browsers when the user selects another emerson link
   you will need to add a new case statement like the example below  also you will have to add 
   a new selection to the drop down box*/
   
function ChangePage(){
 switch (document.frmLinks.cboLinks.selectedIndex){
  case 0:
   return
  case 1:
   window.open("http://www.alcocontrols.com","Alco")
   return
  case 2:
   window.open("http://www.cpcus.com","cpc")
   return
  case 3:
   window.open("http://www.emersonfans.com","Aircomfort")
   return
  case 4:
   window.open("http://www.emersonmotors.com","EmersonAirMoving")
   return
  case 5:
   window.open("http://www.emersonmotors.com","EmersonHermetic")
   return
  case 6:
   window.open("http://www.emerson-ept.com","PowerTransmission")
   return
  case 7:
   window.open("http://www.emersonvent.com","Ventilation")
   return
  case 8:
   window.open("http://www.fusite.com","Fusite")
   return
  case 9:
   window.open("http://www.thermodisc.com","ThermoDisk")
   return
  case 10:
   window.open("http://www.white-rodgers.com","WhiteRodgers")
   return     
 }
 
}

function gotoLink(form) {
   var OptionIndex=form.ListBoxURL.selectedIndex;
   parent.location = form.ListBoxURL.options[OptionIndex].value;}

function stopError() {
  return true;
}
window.onerror = stopError;

