var lastNavName = '';

// contactchange() replaced 11-17-09 jn
/*function contactChange() {
	if(document.contactForm.location.value.toLowerCase() == 'north america') {
	 window.location.href='http://www.globalgroup.us.com';
	}
	else {
       document.location.href="wmspage.cfm?parm1=209#" + document.contactForm.location.value;
	}
};*/

function contactChange() {
	
globalplace = document.contactForm.location.value;

	switch(globalplace)
{
case 'Central & South Asia':
  document.location.href="wmspage.cfm?parm1=283";
  break;
case 'Middle East & Africa':
  document.location.href="wmspage.cfm?parm1=120";
  break;
case 'North America':
  document.location.href="wmspage.cfm?parm1=244";
  break;
case 'Asia Pacific':
  document.location.href="wmspage.cfm?parm1=122";
  break;
case 'Europe':
  document.location.href="wmspage.cfm?parm1=118";
  break;  

	};
}


var t;

function subnav(name,show) {
	
	if (show == "on") {
		if(lastNavName != '') {		
		 document.getElementById(lastNavName).style.display = 'none';	
		}
		document.getElementById(name).style.display = 'block';		
		lastNavName = name;
	} else {
		t = setTimeout("eval(\"" + "document.getElementById('" + name + "').style.display = 'none'" + "\")", 1000);		
	};
};

function subnavunder(name,show) {	
	if (show == "on") {
		clearTimeout(t);
	} else {
		t = setTimeout("eval(\"" + "document.getElementById('" + name + "').style.display = 'none'" + "\")", 1000);		
	};
};