function MM_jumpMenu(targ,selObj,restore)
{ //v3.0

  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function searchcheck(){

	var region_loc = document.searchbar.region_local.options[document.searchbar.region_local.selectedIndex].value;
	var region_int = document.searchbar.region_inter.options[document.searchbar.region_inter.selectedIndex].value;

	if((region_loc == 0) && (region_int == 0)){
		alert("Please select either a U.S. state or an international region.");
		return false;
	}
	if((region_loc != 0) && (region_int != 0)){
		document.searchbar.region_local.selectedIndex = 0;
		document.searchbar.region_inter.selectedIndex = 0;
		alert("Only one region can be selected at a time.\nPlease select a region.");
		return false;
	}

	if(region_loc != 0)
	{
         eval("parent.location='"+ region_loc + "'");
         if (restore) {region_loc =0;}	
	}
	
	if(region_int != 0)
	{
	 eval("parent.location='"+ region_int + "'");
         if (restore) {region_int = 0;}
	}
	
	
	return true;
                     }


function newWindow(url,w,h)
   {
    msgWindow = window.open(url,"_blank",'resizable=yes,width=' + w + ',height=' + h + ',scrollbars=yes');
    if (msgWindow.opener == null) {msgWindow.opener = self;}
}