/* author: Rastislav Judin */
/* Creation date: 18. 11. 2008 */
HomeUrl="http://www.buwag.sk";
function otvorobrazok(subor,w,h,title)
{
  x=w+20;
  y=h+20;
  noveo = window.open("","Obrazok","width="+x+", height="+y+",scrollbars=yes");
  noveo.document.write("<html>\n<head>\n<title>"+title+" -  </title>\n</head>\n<body style='margin: 0 0 0' onclick='(window.close())'>\n");
  noveo.document.write("<a href=\"javascript:window.close()\"><img src='"+HomeUrl+"/"+subor+"' border='0' width='"+w+"' height='"+h+"' alt='' /></a>\n");
  noveo.document.write("</body>\n</html>\n");
}