<!--
function PopImg(img) { 
	image = new Image();
	image.src = img;
	lmax=screen.width-50;
	html = '<HTML><HEAD><TITLE>Image</TITLE></HEAD><BODY style="margin:0;"><IMG SRC="'+img+'" NAME="imageTest" onLoad="lmax=screen.width-50;hmax=screen.height-50;i=document.imageTest;l=i.width;h=i.height;if(l>=lmax){h=(lmax/l)*h;l=lmax};if(h>=hmax)h=hmax;window.resizeTo(l,h);moveTo((lmax-l)/2,0)" onclick="window.close()" style="max-width:'+lmax+'"></BODY></HTML>';
	popupImage = window.open('','','width=200+"px",height=200+"px",scrollbars=no,resizable,status=no');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
}
//-->