    function MM_jumpMenu(targ,selObj,restore){ //v3.0
    	var country = '';
          country = selObj.options[selObj.selectedIndex].text;
        $.cookie("country",country);
		if (selObj.options[selObj.selectedIndex].value=='') return false;
    var thewin=window.open(selObj.options[selObj.selectedIndex].value,targ);
    thewin.focus();
    if (restore) selObj.selectedIndex=0;
    }
