var querywindow = '';
function open_querywindow(url) {
    if (!querywindow.closed && querywindow.location) {
        querywindow.focus();
    } else {
  querywindow=window.open(url,'','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=yes,resizable=yes');
  
 /*querywindow=window.open(url,'','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=yes,resizable=yes,width=550,height=310');
  */  }

    if (!querywindow.opener) {
       querywindow.opener = self;
    }

    if (window.focus) {
        querywindow.focus();
    }

    return false;
}
function open_pictwindow_xy(pict,x_vel,y_vel,popis) 
{
 x_pos = screen.width/2 - x_vel/2;
 y_pos = screen.availHeight/2 - y_vel/2; 
 var xprip = 0;
 var yprip = 0;
 if (document.all)
 {
  var xprip = 11;
  var yprip = 30;
 }
 else
 {
  var xprip = 25;
  var yprip = 30;
 } 
 
var okno = window.open("","okno","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,left="+ x_pos+",top="+y_pos+",resizable=no,width="+(x_vel+xprip)+",height="+(y_vel+yprip)); 
okno.resizeTo(x_vel+xprip,y_vel+yprip);
okno.document.clear();
okno.document.open("text/html");
okno.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
okno.document.writeln('<html><head><title>"'+popis+'"</title></head>');
okno.document.writeln('<body style="margin:0px;background-color:#ffffff;">');
okno.document.writeln('<script language="JavaScript" type="text/javascript"> this.focus(); </script>');
okno.document.writeln('<a href="#" onclick="window.close();"><img src="'+pict+'" width="'+x_vel+'" height="'+y_vel+'" border="0" alt=""></a>');
okno.document.writeln('</body>');
okno.document.writeln('</html>');
okno.document.close(); 


}