

var timerLNG=null;
function showHideLang(st) {
	obj=document.getElementById('lng');
	if(!obj) return;
	if(timerLNG) clearTimeout(timerLNG);
	if(st) obj.style.display='block';
	else timerLNG=setTimeout("document.getElementById('lng').style.display='none';",150);
};


/* SPRAWDZANIE ZALADOWANIA CSS */
var chc=1;
function chCss() {
        try {
                if(document.getElementById('cTlgh').offsetLeft<100) {
                        if(chc==1) document.write('<style type="text/css" media="all">@import "styles.css";</style>');
                        else top.location.href="index.html?css=off";
                        if(chc==1) setTimeout("chCss()",3000);
                        chc++;
                };
        } catch(e) { };
};