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+59);

	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="+(document.getElementsByTagName("BASE").length?document.getElementsByTagName("BASE")[0].href:'')+"publication/js/resize.js></\script><title>::</title><head><body leftmargin=0 marginheight=0 marginwidth=0 topmargin=0 onload=PictureInstall()><img src="+PictureName+" id=img onclick=window.close()></body>');document.close();","_blank","toolbar=no,width=600px,height=420px,left=212,top=174,status=yes");
//	else window.open(PictureName, "_blank", "width=620,height=440,left=202,top=164,fullscreen=no,toolbar=no");
}