function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

var otevrene_okno=null;

function winopen(nazev,sirka,vyska,text) {

if(otevrene_okno && !otevrene_okno.closed){
otevrene_okno.close(); 
}
  v = vyska
  s = sirka
  vyska = vyska
  sirka = sirka
  param = "status=no,resizable=no,menubar=no,directories=no,scrollbars=no,toolbar=no,height=" + vyska + ",width=" + sirka
  otevrene_okno = window.open("", "Obrazek",  param);  otevrene_okno.document.open();
  otevrene_okno.document.write("<html>\n<head>\n");
  otevrene_okno.document.write("<title> "+ text +"</title>\n");
  otevrene_okno.document.write("</head>\n");
  otevrene_okno.document.write("<body bgcolor=#ffffff MARGINWIDTH=0 MARGINHEIGHT=0 LEFTMARGIN=0 TOPMARGIN=0 RIGHTMARGIN=0 BOTTOMMARGIN=0>\n");
  otevrene_okno.document.write("<img src="+nazev+"><br>");
  otevrene_okno.document.write("</body>\n</html>\n");  
  otevrene_okno.document.close();
}

var win= null;
function NewWindow(mypage,myname,w,h,scroll){
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
var settings ='height='+h+',';
settings +='width='+w+',';
settings +='top='+wint+',';
settings +='left='+winl+',';
settings +='scrollbars='+scroll+',';
settings +='resizable=no';
win=window.open(mypage,myname,settings);
if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

