function Okno(url, winName, width, height)
{
    window.open(url, winName, 'toolbar=no,location=no,directories=no,status=no,scrollbars=no,width=' + width +',height=' + height);
}

function Okno2(url, winName, width, height)
{
    window.open(url, winName, 'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,width=' + width +',height=' + height);
}

function vypis_datumcas()
{
    dnes = new Date();
    hh = dnes.getHours();
    mm = dnes.getMinutes();
    ss = dnes.getSeconds();
    den = dnes.getDate();
    mes = dnes.getMonth() + 1;
    rok = dnes.getFullYear();
    cas = den + "." + mes + "." + rok + ", ";
    cas += hh;
    cas += ((mm < 10) ? ":0" : ":") + mm + " | ";
    //cas += ((ss < 10) ? ":0" : ":") + ss;
    document.getElementById('datumcas').innerHTML = cas;
    window.setTimeout("vypis_datumcas();", 10000);
}


function submitForm(ourform) {
  ourform.submit();
}

