function PictureInstall()
{
	var picW=document.images[0].width;
	var picH=document.images[0].height;
	document.images[0].oncontextmenu=new Function("return false;");

	picW=(picW+50)>screen.width?screen.width-50:picW;
	picH=(picH+50)>screen.height?screen.height-50:picH;

	window.resizeTo(picW+10, picH+29);

	var x=(screen.width/2)-(picW/2);
	var y=(screen.height/2)-(picH/2);
	window.moveTo(x, y);

	document.images[0].width=picW;
}
function OpenPicture(PictureName)
{
		window.open("javascript:document.write('<head><script type=text/javascript src=/js/resize.js></\script><title>Image Zoom</title><head><body leftmargin=0 marginheight=0 marginwidth=0 topmargin=0 onload=PictureInstall()><center><img src="+PictureName+" align=middle id=img onclick=window.close()></center></body>');document.close();","_blank","toolbar=no; width=600px; height=420px; left=212; top=174;");
}