// Pop-Up fixe 
function openWindow(urlpage,titre,largeur,hauteur) {
	// Ouverture du PopUp centre a l'ecran
	offsetx=0;
	offsety=0;
	posx=Math.round((screen.availWidth-largeur)/2)+offsetx;
	posy=Math.round((screen.availHeight-hauteur)/2)+offsety;
	window.open(urlpage,titre,"width="+largeur+",height="+hauteur+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,left="+posx+",top="+posy+",x=1,y=1");
}

// Pop-Up avec ascenceur
//function openWindowDocs(urlpage,titre,largeur,hauteur) {
//	offsetx=0;
//	offsety=0;
//	posx=Math.round((screen.availWidth-largeur)/2)+offsetx;
//	posy=Math.round((screen.availHeight-hauteur)/2)+offsety;
//	window.open(urlpage,titre,"width="+largeur+",height="+hauteur+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,left="+posx+",top="+posy+",x=1,y=1");
//}

