function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function exPositionShow() {	
	var seq = (document.all.industry.selectedIndex) + 1;	
	var obj;
	for (var i=1; i <= document.all.industry.length ; i++)
	{
		obj = eval("document.all.divExPosition" + i);
		obj.style.display="none";
	}
	obj = eval("document.all.divExPosition" + seq);
	obj.style.display="";
}