// copyright da-code 2004
var fenetre = null;
var url;
var width;
var height;
function pop(url,width,height){
	if (fenetre && !fenetre.closed)
		fenetre.location.href = url;
	else
	
	 if (navigator.platform == "MacPPC" && navigator.appName == "Microsoft Internet Explorer") {
		var width = width-16;
		var height = height-16;
		}
	
	var large = (screen.width - width) / 2;
	var haut = (screen.height - height) / 2;
	fenetre=window.open(url,'fenetre',"width="+ width +",height="+ height +"toolbar=0,resizable=1,title=0,scrollbar=0,status=0,top="+haut+",left="+large);
	setTimeout('fenetre.focus();',250);
}
