function MM_jumpMenu(selObj){ //v3.0
	if (selObj.options[selObj.selectedIndex].value != ""){
		MM_openBrWindow(selObj.options[selObj.selectedIndex].value,'site','600','400','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes','true');
	}
}


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

//alert(selObj.options[selObj.selectedIndex].value);

   // si pas de value -> pas de lien
   if (selObj.options[selObj.selectedIndex].value != "") {
       eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
       if (restore) selObj.selectedIndex=0;
   }
} 

function MM_openBrWindow(theURL,winName,width,height,features,bCentre) { //v3.0 by Kaori Développement
	var window_width = width;
  var window_height = height;
  var newfeatures= "," + features;
  var window_top = (screen.height-window_height)/2;
  var window_left = (screen.width-window_width)/2;
	if(bCentre == 'false'){
		newWindow=window.open(''+ theURL + '',''+ winName + '','width=' + window_width + ',height=' + window_height + newfeatures + '');
	}else{
	  newWindow=window.open(''+ theURL + '',''+ winName + '','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + newfeatures + '');
	}
  newWindow.focus();
}
