function newopen(id){
id2='/reality/';
id2+=id;
id2+='.jpg';
  window.open(id2,'mywindow','width=640,height=480');
}
function PopupPic(PicURL)
{
 var s=window.open(PicURL, "", "resizable=0,toolbar=no,width=640,height=480,top=10,left=10");
 s.document.open();
 s.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">');
 s.document.write('<html><head><title>Obrázok</title>');
 s.document.write('<meta http-equiv="content-type" content="text/html; charset=ISO-8859-2" />');
	s.document.write('<style type="text/css">body, a{background: Black none;color: White;text-align: center;margin: 2px;border:0;padding:0;}img{border-width: 0;}</style>');
	s.document.write('<script type="text/javascript">function FitPic() {iWidth=document.body.clientWidth;iHeight=document.body.clientHeight;iWidth=document.images[0].width-iWidth+10;iHeight=document.images[0].height-iHeight+25;window.resizeBy(iWidth, iHeight);self.focus();};</script></head>');
 s.document.write('<body onload=\'FitPic();\'><a href="javascript:window.close()"><img src="'+PicURL+'" alt="Click the image to close this window."></a><br><a href="javascript:window.close()">[Zatvoriť]</a></body></html>');
 s.document.close();
 return true;
}
