function picview(inum)
{
 var newWindow = window.open("", "", "width=350, height=350 top=0 left=0");
 newWindow.document.write('<html>');
 newWindow.document.write('<head>');
 newWindow.document.write('<link rel="stylesheet" type="text/css" href="00_stilus.css">');
 newWindow.document.write('</head>');
 newWindow.document.write('<body>');
 newWindow.document.write('<div name="imgcontainer" id="imgcontainer">');
 newWindow.document.write('<img name="image" id="image" src="gallery/img'+inum+'.jpg">');
 newWindow.document.write('</div>');
 newWindow.document.write('<div id="jsfooter"><p>fotó:Hajdu András</p></div>');
  newWindow.document.write('</body>');
 newWindow.document.write('</html>');
 newWindow.document.body.style.background="url('design/picbg.jpg')";
 newWindow.document.getElementById('imgcontainer').style.width="350px";
 newWindow.document.getElementById('imgcontainer').style.height="350px";
 newWindow.document.getElementById('imgcontainer').style.margin="0px auto";
 newWindow.document.getElementById('imgcontainer').style.position="absolute";
 newWindow.document.getElementById('imgcontainer').style.left="0px";
 newWindow.document.getElementById('imgcontainer').style.top="0px";
 newWindow.document.getElementById('image').style.border="1px solid navy";
}