function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
popup=null ;
closePopup = function(){
	if ( popup ) {
		if (!popup.closed) popup.close();
	}
}
openPopup = function(url,hauteur,largeur) {
	closePopup();
	hauteur2=hauteur+68 ;
	largeur2=largeur ;
	var top=Math.round((screen.availHeight-hauteur2)/2);
	var left=Math.round((screen.availWidth-largeur2)/2);
	popup = window.open("popup2.php?video="+url+'&width='+largeur+'&height='+hauteur2, 'popup', 'height='+hauteur2+', width='+largeur2+', scrollbars=no, toolbar=no, location=no, resizable=no, directories=no, menubar=no, status=no, top='+top+', left='+left ) ;
	popup.focus();
}