/* 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.emersonfans.com","AirComfort")
			return
		case 2:
			window.open("http://www.csa-eng.com","CliveSamuels")
			return
		case 3:
			window.open("http://www.cpcus.com","CPC")
			return
		case 4:
			window.open("http://www.controltechniques.com","Control")
			return
		case 5:
			window.open("http://www.copeland-corp.com","Copeland")
			return
		case 6:
			window.open("http://www.designservicesnetwork.com","DesignServicesNetwork")
			return
		case 7:
			window.open("http://www.emersonclimate.com/PRODUCTSSERVICES/Services/CC_000952.htm","Distribution")
			return		
		case 8:
			window.open("http://www.emersonclimate.com/education","EducationalServcies")
			return
		case 9:
			window.open("http://www.emerson-ept.com","EPT")
			return
		case 10:
			window.open("http://www.emersonflowcontrols.com","FlowControls")
			return
		case 11:
			window.open("http://www.fusite.com","Fusite")
			return
		case 12:
			window.open("http://www.emersonmotors.com","HVACmotors")
			return
		case 13:
			window.open("http://www.ersus.com","RetailServices")
			return
		case 14:
			window.open("http://www.thermodisc.com","ThermoDisk")
			return
		case 15:
			window.open("http://www.emersonvent.com","Ventilation")
			return
		case 16:
			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;

