<!--
var popup = null;
function NewWindow(mypage,myname,w,h,InfoCentrer, Scrollebar, Toolbar, Menubar, Resizable, Location, Status){
	if (InfoCentrer=="Vrai") {
		var winl = (screen.width-w)/2;
		var wint = (screen.height-h)/2;
		}
	else if (InfoCentrer=="Presque") {
		var winl = (screen.width-w)/2;
		var wint = 5;
	}
	else if (InfoCentrer=="cote") {
		var winl = 674;
		var wint = 5;
	}
	else {
		var winl = 5;
		var wint = 5;
	}
	if (Scrollebar=="") {
		Scrollebar = "yes";
	}
	else {
		Scrollebar = "no";
	}

	if (Toolbar=="") {
		Toolbar = "yes";
	}
	else {
		Toolbar = "no";
	}

	if (Menubar=="") {
		Menubar = "yes";
	}
	else {
		Menubar = "no";
	}

	if (Resizable=="") {
		Resizable = "yes";
	}
	else {
		Resizable = "no";
	}

	if (Location=="") {
		Location = "yes";
	}
	else {
		Location = "no";
	}

	if (Status=="") {
		Status = "yes";
	}
	else {
		Status = "no";
	}

settings='height='+h+',width='+w+',top='+wint+',left='+winl+',screenX='+winl+',screenY='+wint+',scrollbars='+Scrollebar+',toolbar='+Toolbar+',location='+Location+',status='+Status+',menubar='+Menubar+',resizable='+Resizable+''
if (popup && popup.open && !popup.closed) { popup.window.focus(); }
popup=window.open(mypage,myname,settings)
popup.window.focus();
}
// -->




