function MM_jumpMenuLoc(targ,selObj,restore)
{
 	//alert(document.getElementById('loc').value);
	if (document.getElementById('loc').value == null || document.getElementById('loc').value=='')
  	{
		alert("Please select a city.");
		//theForm.loc.focus();
		//return (false);
	 }
	 else
	 {
		eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); 
		//window.open(selObj.options[selObj.selectedIndex].value+"",'','');
		//if (restore) selObj.selectedIndex=0;
	  }
}

