// javascript (c) 2005 Jozef Cernak for Zirkon.sk
hwndZirkon = null;

function OpenWnd(image,wWidth,wHeight){
  if (hwndZirkon) hwndZirkon.close();
  hwndZirkon = window.open("popup.php?i="+image,null,
    "width="+ wWidth +",height="+ wHeight +",status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no");
  return true;
}


function FixOperaBorder() {
  if (navigator.userAgent.indexOf('Opera')>-1) {
    //document.write('<style type="text/css">body {margin:-8px;}</style>');
    document["body"].style.margin = "-8px";
  }
}

FixOperaBorder();