<!--- 
	// (c) Michael Marsman 2002
	
function PopupEnlarged(ImageUrl) {

	msg=window.open("","msg","height=150,width=250,left=80,top=80,resizable=yes");
	msg.document.write("<HTML><HEAD><script language=javascript> var i=0; function resize() { if (navigator.appName == 'Netscape') i=40;  if (document.images[0]) window.resizeTo(document.images[0].width +30, document.images[0].height+60-i); self.focus(); } </script>");
	msg.document.write('</HEAD>');
	msg.document.write('<BODY>');
	msg.document.write('<CENTER><IMG SRC="' + ImageUrl + '" onLoad="resize()"></CENTER></BODY></HTML>');
}
--->
