function zobrazit(foto,w,h) {
    okno=window.open("","","left=50,top=50,width="+w+",height="+h+",menubar=no,resizable=no");

 with (okno.document)
 {
  open();
  writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
  writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">\n<head>');
  writeln('<meta http-equiv="content-type" content="text/html; charset=ISO-8859-2" />');
  writeln('<title>Reference</title>');
  writeln('</head>');
  writeln('<body style="margin: 0;">');
  writeln('<img src="'+foto+'" border="0" alt="reference" />');
  writeln('</body>\n</html>');
  close();
 }
  okno.focus();
}


function vice(jazyk) {
    window.open("vice.php?jazyk="+jazyk+"","","left=50,top=50,width=600,height=490,menubar=no,resizable=no");
}

function cenik(jazyk) {
    window.open("cenik.php?jazyk="+jazyk+"","","left=50,top=50,width=420,height=150,menubar=no,resizable=no");
}

