var szHost = '';

function PopupImage(img,sztitre) {
	titre=sztitre;

	var w = 800, h = 600;
    var w = screen.width;
	var h = screen.height;

	if (document.all) {
		w = document.body.clientWidth;
		h = document.body.clientHeight;
	}
		else if (document.layers) {
		w = window.innerWidth;
		h = window.innerHeight;
	}

	var popW = 0, popH = 0;

	var leftPos = (screen.width) ? (screen.width-w)/1 : 0, topPos = (screen.height) ? (screen.height-h)/2 : 0;
	
	win =window.open('','newWin','width=300,height=300,top=' + topPos  +', left=' + leftPos  + ',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes');
	win.document.write("<HTML><HEAD><TITLE>&nbsp;</TITLE></HEAD>");
	win.document.write("<SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+60,document.images[0].height+100); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	win.document.write("<BODY BGCOLOR='#FFFFFF' onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");

	win.document.write("<FORM><TABLE border='0' cellpadding=20 width='100%' height='100%'>");
	win.document.write("<TR>");
	win.document.write("<TD align='center' height='100%' width='100%'>");
	win.document.write ("<IMG SRC=");
	win.document.write (img);
	win.document.write (">");
	win.document.write ("<BR><BR><INPUT TYPE='button' VALUE='Fermer' onClick='self.close()'></BR>");
	
	win.document.write("</TD>");
	win.document.write("</TR>");
	win.document.write("</TABLE></FORM>");
	win.document.write ("</BODY></HTML>");
	win.document.close();
}

//var szHost = 'http://www.sabat.fr/'

