var windowW=400; // wide
var windowH=500; // high
var windowX = 260; // from left
var windowY = 100; // from top
// set this to true if the popup should close
// upon leaving the launching page; else, false
var autoclose = true;
// do not edit below this line
s = "width="+windowW+",height="+windowH;
function ouverture(lien) 
{
	NFW = window.open(lien ,"Location","scrollbars, top=20,left=120, "+s); 
	//NFW = window.open(lien ,"Location","scrollbars,"+s);
	NFW.blur();
	window.focus(); 
	//NFW.resizeTo(windowW,windowH);
	NFW.focus();
	if (autoclose) 
	{ 
		window.onunload = function(){NFW.close();} 
	}
}