<!--
function show_map(num,popis) {
// alert ("num je " + num);
var pix=document.getElementById('mapa-kraju');
pix.src = img[num].src;
// alert ("pix je " + pix.src);
document.getElementById('mapa-kraju-popis').innerHTML = popis;
}

function sinfo() {
alert("Vše uloženo !!!");
}

function listing_change() {
document.listing.submit();
}

function do_submit() {
document.listing.submit();
}

function zkontroluj_email(adresa)
{
  re = /^[^.]+(\.[^.]+)*@([^.]+[.])+[a-z]{2,4}$/;
  return adresa.search(re) == 0;
}

function check_dotaz() {
var write="";
if (document.dotaz.jmeno.value=='') write+="zadejte Vaše jméno\n";
if (document.dotaz.telefon.value=='') write+="zadejte Váš telefon\n";
if (document.dotaz.email.value=='') write+="zadejte Váš email\n";
if (document.dotaz.pozn.value=='') write+="zadejte Váš dotaz\n";
if (document.dotaz.kod.value=='') write+="zadejte kontrolní kód\n";

if (!zkontroluj_email(document.dotaz.email.value)) write+="špatný formát emailu\n";

if (write!='')
{
alert ("Chybějící údaje\n\n" + write);
}
else
{
alert ("Právě byl odeslán email s Vaším dotazem, děkujeme");
document.dotaz.submit();
}
}

function check_tip() {
var write="";
if (document.dotaz.jmeno.value=='') write+="zadejte Vaše jméno\n";
if (document.dotaz.email_odesilatel.value=='') write+="zadejte Váš email\n";
if (document.dotaz.email_prijemce.value=='') write+="zadejte email příjemce\n";
if (document.dotaz.pozn.value=='') write+="zadejte vzkaz\n";
if (document.dotaz.kod.value=='') write+="zadejte kontrolní kód\n";

if (!zkontroluj_email(document.dotaz.email_odesilatel.value)) write+="špatný formát emailu, odesílatel\n";
if (!zkontroluj_email(document.dotaz.email_prijemce.value)) write+="špatný formát emailu, příjemce\n";

if (write!='')
{
alert ("Chybějící údaje\n\n" + write);
}
else
{
alert ("Právě byl odeslán email s Vaším dotazem, děkujeme");
document.dotaz.submit();
}
}

function winOp(link,width,height) {
	window.open(link, '', 'toolbar="no",scrollbars=yes,resizeable=yes,height=' + height + ',width=' + width + ',top=5,left=5');
}
//-->
