// JavaScript Document
function popimg(URL,larg,haut) {
<!--alert(navigator.appName + " / " + navigator.appVersion);-->
if (navigator.appName=="Microsoft Internet Explorer") 
{
	largeur = (larg + 10);
	hauteur = (haut + 29);
}
else
{
	largeur = (larg + 6 + 3);
	hauteur = (haut + 26 + 3);
}

if (screen.availWidth < largeur)
	largeur = screen.availWidth;
if (screen.availHeight < hauteur)
	hauteur = screen.availHeight;

posx = (screen.width - largeur)/2;
posy = (screen.height - hauteur)/2;

var w=window.open(URL,"zoomimg","width="+largeur+",height="+hauteur+",screenX="+posx+",screenY="+posy+",left="+posx+",top="+posy+",menubar=0,toolbar=0,location=0,status=0,resizable=0,scrollbars=0");
w.document.write("<TITLE>Zoom</TITLE>");
w.document.write("<script>self.moveTo("+posx+","+posy+");self.resizeTo("+largeur+","+hauteur+");window.outerWidth = "+largeur+";window.outerHeight = "+hauteur+";</script>");
w.document.write("<BODY bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
w.document.write("<a href='#' onClick='javascript: window.close()'><img src="+URL+" border='0'></a>");
w.document.write("</BODY>");
w.document.close();
w.focus();
}
function popmap(URL,larg,haut) {
<!--alert(navigator.appName + " / " + navigator.appVersion);-->
if (navigator.appName=="Microsoft Internet Explorer") 
{
	largeur = (larg + 10 + 18);
	hauteur = (haut + 29 + 2);
}
else
{
	largeur = (larg + 6 + 2);
	hauteur = (haut + 26 + 2);
}

if (screen.availWidth < largeur)
	largeur = screen.availWidth;
if (screen.availHeight < hauteur)
	hauteur = screen.availHeight;

posx = (screen.width - largeur)/2;
posy = (screen.height - hauteur)/2;

var w=window.open(URL,"zoomimg","width="+largeur+",height="+hauteur+",screenX="+posx+",screenY="+posy+",left="+posx+",top="+posy+",menubar=0,toolbar=0,location=0,status=0,resizable=1,scrollbars=1");
w.document.write("<TITLE>Map</TITLE>");
w.document.write("<script>self.moveTo("+posx+","+posy+");self.resizeTo("+largeur+","+hauteur+");window.outerWidth = "+largeur+";window.outerHeight = "+hauteur+";</script>");
w.document.write("<BODY bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
w.document.write("<img src="+URL+" border='0'>");
w.document.write("</BODY>");
w.document.close();
w.focus();
}