function mover(m){
    document.getElementById(m).style.backgroundColor='#008695';
}
function mout(m){
    document.getElementById(m).style.backgroundColor='#66b6bf';
}

function m1over(m){
    document.getElementById(m).style.color='#000000';
}
function m1out(m){
    document.getElementById(m).style.color='#dcdcdc';
}

function gt(kam){
 window.location=kam;
}

function gtn(kam){
 window.open(kam,'akce');
}

function cticookie(jm){
poz=0;
hledat=jm+"=";
delka=hledat.length;
cookiedelka=document.cookie.length;
while(poz<cookiedelka){
konec=poz+delka;
if (document.cookie.substring(poz,konec)==hledat){
konecretezce=document.cookie.indexOf(";",konec);
if (konecretezce==-1) konecretezce=document.cookie.length;
vysledek=unescape(document.cookie.substring(konec,konecretezce));
return(vysledek);}
poz=document.cookie.indexOf(" ",poz)+1;
if (poz==0) break;}
return("");
}

