var w;

function PopupImage(img) {

	w=window.open("",'image','titlebar=no,width=10,height=10,toolbar=no,scrollbars=no,resizable=no,status=no,left=50,top=50,');	

	w.document.writeln("<HTML>")

	w.document.writeln("<HEAD>")

	w.document.writeln("</HEAD>")

	w.document.writeln("<SCRIPT language=javascript> ")

	w.document.writeln("function checksize() {")

	w.document.writeln("     window.resizeTo(document.images[0].width+62,document.images[0].height+90);")

	w.document.writeln("     window.focus();")

	w.document.writeln("}")

	

	w.document.writeln("</"+"SCRIPT>")

	w.document.writeln("<BODY bgColor=#000000 onload='checksize()' leftMargin=0 topMargin=0 borderwidth=0 borderheight=0 >")

	w.document.writeln("<IMG src='" + img + "' border=0, vspace=25,  hspace=25, valign=midle,  >")

	w.document.writeln("")

	w.document.writeln("</BODY>")

	w.document.writeln("</HTML>")

	w.document.close()

}



function PopUpFermer() {

       if (w.document) {w.close();}

}



