// JavaScript Document

	///////////////////////////////
	// Fonctions gestion fenêtre //
	///////////////////////////////


function create_fen_centre(url, w, h) {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width-w-10)/2; //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height-h-50)/2; //half the screen height minus half the new window height (plus title and status bars).
	var fen = window.open(url,"_blank",'width=' + w + ',height=' + h + ',left=' + iMyWidth + ',top=' + iMyHeight +',scrollbars=yes,menubar=no,resizable=yes');
	fen.focus();
}


function create_fen_haut_droit(url, w, h) {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width-w-10); //the screen width minus the new window width (plus 5 pixel borders).
	iMyHeight = 0;
	var fen = window.open(url,"_blank",'width=' + w + ',height=' + h + ',left=' + iMyWidth + ',top=' + iMyHeight +',scrollbars=yes,menubar=no,resizable=yes');
	fen.focus();
}




