function DisplayPicture(FileName)
{
  var win = window.open("", "noveOkno", "alwaysraised=no,dependent=no,hotkeys=no,location=no,menubar=no,resizable=no,scrollbars=auto,status=no,titlebar=no,width=640,height=500");
  win.document.open("text/html", "replace");
  win.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">');
  win.document.writeln("<HTML><HEAD>");
  win.document.writeln("<TITLE>GV-MONT</TITLE>");
  win.document.writeln("<SCRIPT>");
  win.document.writeln("function setSize()");
  win.document.writeln("{");
  win.document.writeln("var img = window.document.images[0];");
  win.document.writeln("window.resizeTo(img.width, img.height+30);");
  win.document.writeln("}");
  win.document.writeln("<\/SCRIPT>");
  
  win.document.writeln('<META NAME="GV-MONT s.r.o." CONTENT="brany,vrata,brany a vrata">');
  win.document.writeln('<meta name="resource-type" content="document">');
  win.document.writeln("</HEAD>");
  win.document.writeln('<BODY bgcolor="#FFFFFF" marginheight=0 marginwidth=0 topmargin=0 leftmargin=0 onLoad="setSize();">');
  win.document.writeln('<IMG SRC="'+FileName+'" BORDER=0>');
  win.document.writeln("</BODY></HTML>");
  win.document.close();
  win.onBlur = "window.close();";
  win.focus();
}

function DisplayMenu(Id)
{
  if(document.getElementById(Id).style.display =='none') {
      document.getElementById(Id).style.display='block';
  }
  else {
    document.getElementById(Id).style.display='none';
  }
}

