// Document JavaScript

function popup_image(image)
{
	titre="Trans-Cité Express";
	w=open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<html><head><title>"+titre+"</title><link rel='StyleSheet' href='/documents/css/style.css' type='text/css'></head>");
	w.document.write("<script language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+12,document.images[0].height+60); window.moveTo((screen.width-document.images[0].width-12)/2,(screen.height-document.images[0].height-70)/2); window.focus(); } else { setTimeout('check()',1) } }</"+"script>");
	w.document.write("<body onload='checksize()' leftmargin='0' topmargin='0 marginwidth='0' marginheight='0' bgcolor='#FFFFFF'>");
	w.document.write("<center><img src='"+image+"' title='"+titre+"' border='0'>");
	w.document.write("</body></html>");
	w.document.close()
}

// Ouvrir et centrer une fenętre

function ouvrir_fenetre(nUrl, nNom, largeur, hauteur, option)
{
	var gauche = (screen.width) ? (screen.width - largeur) / 2 : 0;
	var haut = (screen.height) ? (screen.height - hauteur) / 2 : 0;
	fenetre = window.open(nUrl, nNom, "width=" + largeur + ",height=" + hauteur + ",left=" + gauche + ",top=" + haut + "," + option);
	fenetre.window.focus()
}
