function CheckForm(formular)
{

if (formular.jmeno.value=="")
{
alert("Chybí název firmy (popř. kontaktní osoba)!");
formular.jmeno.focus();
return false;
}
if (formular.zprava.value=="")
{
alert("Chybí text zprávy !");
formular.zprava.focus();
return false;
}
else
return true;

}


function openJSLWindow() {
iMyWidth = (window.screen.width/120)
iMyHeight = (window.screen.height/120)
Fokus = window.open("", "JSL","height=520,width=520,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");
Fokus.focus()
}




