<!--
var newWin;
function openPop(url, name, refresh, width, height, resizable, scrollbars,toolbar, menubar)
{	var settings='';
	var reOpen=true;
	if(newWin==null)
		newWin = new Array();
	if(newWin[name])
	{
		if(!newWin[name].closed)
		{
			reOpen=false;
			if(refresh && newWin[name].document)
				newWin[name].document.location=url;
			resizeWindow(newWin[name], width, height);
			newWin[name].moveTo((screen.width-width)/2, (screen.height-height)/2);
			newWin[name].focus();
		}
	}
	if(reOpen)
	{
		leftf = (screen.width-width)/2;
		topf  = (screen.height-height)/2;
		settings = "width="+width+",height="+height+", top="+topf +",left="+leftf+",";
		settings += "scrollbars=" + ((scrollbars) ? "yes," : "no,");
		settings += "toolbar=" + ((toolbar) ? "yes," : "no,");
		settings += "menubar=" + ((menubar) ? "yes," : "no,");
		settings += "resizable=" + ((resizable) ? "yes" : "no");
		newWin[name] = window.open(url, name, settings);
		//--Sécurité si la fenêtre n'a pas été détectée par le code précédent
		resizeWindow(newWin[name],width, height);
		newWin[name].focus();
	}	
}


//-->
