function otevriOkno(obrazek, width, height, okno) {
 okno=window.open("","_blank","left="+(screen.width/2-width/2)+",top="+(screen.height/2-height/2)+",width="+width+",height="+(parseInt(height)+14)+",menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no"); 
 with (okno) {
  document.write("<HTML>\n<HEAD>\n<TITLE>Obrázek v plnÚ velikosti</TITLE>\n</HEAD>\n<BODY leftmargin=\"0\" topmargin=\"0\">\n");
  document.write("<div style='position:absolute; top:0px; left:0px;' align=center>\n  <div style='font-family: Verdana, Arial; font-size:10px;   font-color:black; width:"+width+"; background-color:#E9E9E9;'>\n    <a title=\"Zavřít\" href='javascript:window.close();'>");
  document.write("<IMG SRC=\""+obrazek+"\" border=0/></a>\n");
  document.write("    Okno zavřete kliknutím na obrázek\n  </div>\n</div>\n");
  document.write("</BODY>\n</HTML>");
 }
}

function otevriOkno1(obrazek, width, height, okno) {
 okno=window.open("","_blank","left=50,top=0,width="+screen.width-150+",height="+(screen.height-150)+",menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=no"); 
 with (okno) {
  document.write("<HTML>\n<HEAD>\n<TITLE>Obrázek v plné velikosti</TITLE>\n</HEAD>\n<BODY leftmargin=\"0\" topmargin=\"0\">\n");
  document.write("<div style='position:absolute; top:0px; left:0px;' align=center>\n  <div style='font-family: Verdana, Arial; font-size:10px;   font-color:black; width:"+width+"; background-color:#E9E9E9;'>\n    <a title=\"Zavřít\" href='javascript:window.close();'>");
  document.write("<IMG SRC=\""+obrazek+"\" width="+width+" height="+height+" border=0/></a>\n");
  document.write("    Okno zavřete kliknutím na obrázek\n  </div>\n</div>\n");
  document.write("</BODY>\n</HTML>");
 }
}

function statusBarText(text) {
  document.write("onMouseOver='window.status=\'"+text+"\'; return true; onMouseOut='window.status=\'\'';");
}

function mailtest(){
mail=/^.+@.+\..{2,3}$/;
inp=document.fmail.email.value;
if (mail.test(inp)==true) return true;
else return false;
}

function mailSekce() {
if (document.form.jmeno.value=="") window.alert("Je třeba uvést své jméno");
else if (!mail()) window.alert("Nesprávná e-mailová adresa");
else if (document.form.value=="*Text vaší zprávy...")
	window.alert("Napište, prosím, nějaký text zprávy");
else document.form.submit();
}