var Hledat = new Array();
Hledat[Hledat.length] = new Array("searchstring", "value.length > 2", "Délka hľadaného reťazca musí byť aspoň 3 znaky.");



function swapImage(imgname,imgsrc) { //v3.0
//alert(imgname+'  '+imgsrc);
    var x = document.getElementById(imgname);
    if (x) x.src = imgsrc;
}

/* NEW 2.5.2007*/

function zobrazPrvek(typ){
    var searchdiv = document.getElementById('searchdiv').style;
    var countrydiv = document.getElementById('countrydiv').style;
    var searcha = document.getElementById('searcha').style;
    var countrya = document.getElementById('countrya').style;
    
    if(typ == 'search'){
        searchdiv.display = 'block';
        countrydiv.display = 'none';
        searcha.background = "#DDE5EC";
        countrya.background = "none";
    }
    if(typ == 'country'){
        searchdiv.display = 'none';
        countrydiv.display = 'block';
        searcha.background = "none";
        countrya.background = "#DDE5EC";
    }
}

function openWin(){
    if (sel = document.getElementById('extlinks')){
        if(sel.options[sel.selectedIndex].value != 'none'){ 
            window.open(sel.options[sel.selectedIndex].value, '_blank');
        }
    }

}
