var newWindow = null
function makeNewWindow(name,width,height) {
  var rozmery = null
  
rozmery = "HEIGHT=" + height + ",WIDTH=" + width
  //if (text==undefined) text = ""
 // store new window object in global variable
 newWindow = window.open("","",rozmery)
 if (newWindow != null) {
  // assemble content for new window
  var newContent = "<HTML><HEAD><TITLE>Chcizit.cz - kliknutím na obrázek okno zavřete</TITLE></HEAD>"
  newContent += "<BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0 BGCOLOR='#C0C0CC'>"
  newContent += "<IMG SRC=" + name + " BORDER=0 ALIGN='CENTER' ALT='' TITLE='Kliknutím na obrázek okno zavřete' VSPACE=0 onclick='self.close()'>"
     

  newContent += "</BODY></HTML>"
  // write HTML to new window document
  newWindow.document.write(newContent)
  newWindow.document.close()
 }
}

function ImageLauncher(url)
{ window.open(url,"","toolbar=no,scrollbars=no,location=no,status=no,width=480,height=500,resizable=0");
};

function ImageLauncher1(url)
{ window.open(url,"","toolbar=yes,scrollbars=no,location=no,status=no,width=320,height=550,resizable=0");
};

function showHideDiv(i) {
  var obj = document.getElementById(i)
  if (obj.style.display!='none'){
      obj.style.display='none';
      //nastavCookie(name);
  }
  else {
    obj.style.display='block';
    //nastavCookie(name);
  }
}
