// avtor: Goran Mitic
// email: goran.mitic@beezgetz.com
// date: june 2011
// description: script for showing/hiding divs



function showdiv( id ) {
    document.getElementById(id).style.display = 'block';
//document.getElementById(id).focus();
}
function hidediv( id ) {
    document.getElementById(id).style.display = 'none';
//document.getElementById(id).focus();
}

function shrij_dive() {
    //skrij vec/manj dive
    hidediv('ena');



}

function skrij_obrazec() {



    //skrij dive obrazca
    showdiv('div_strinjanje_s_pogoji');
    document.getElementById('id_vnos_strinjanje_s_pogoji').checked = false;
    hidediv('gumbek_strinjanja');
    hidediv('obrazec');
    hidediv('rojstni_dan');
    hidediv('premlado');
    hidediv('vse_najboljse');
    hidediv('neslovenec');
    hidediv("da_dovoljenje_za_delo");
    hidediv("napacna_tel_stevilka");
    hidediv("napacna_mobi_stevilka");
    hidediv('ima_izpit');
    hidediv("drugi_jezik");
    hidediv("drugi_jezik_opomin");
    hidediv("izpis_jezikov");
    hidediv("skriti_izpis_jezikov");
    hidediv("trenutno_izobrazevanje");



    hidediv("druga_racunalniska_znanja");


    
    hidediv('zacetek_dela');
    hidediv('zakljucek_dela');
    hidediv('zaporedje');
    hidediv('izpis_di');
    hidediv('szk_su_tf');
    hidediv('szk_sz_tf');
    hidediv('szk_oz_tf');
    hidediv('szk_tz_tf');
    hidediv('szk_rz_tf');
    hidediv('szk_uz_tf');
    hidediv('szk_iip_tf');
    hidediv('szk_drugo_tf');


    hidediv('invalid');

    hidediv("napaka_placa");
    hidediv("konsistenca_plac");

    // skrij rdece zvezdice (*) za napacen vnos
    hidediv("napacna_postna_stevilka");



}






