<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language='javascript'>
	var NS = (navigator.appName=="Netscape")?true:false;

	function fitPic() {
		iWidth = (NS)?window.innerWidth:document.body.clientWidth;
		iHeight = (NS)?window.innerHeight:document.body.clientHeight;
		iWidth = document.images[0].width - iWidth;
		iHeight = document.images[0].height - iHeight;
		window.resizeBy(iWidth, iHeight-1);
		//self.moveTo(screen.width / 2 - iWidth,screen.height / 2 - iHeight);
		self.focus();
	};
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload='fitPic();'>
<div><img src="<?php print $fileName; ?>" border="0"></div>
</body>
</html>
