
function ads(time, swf) {
 time=time+'000';
 setTimeout("hiddenAds('"+swf+"')", time);
}

function hiddenAds(swff) {
document.getElementById('flashAdsStart').style.visibility = 'hidden';
document.getElementById('flashAdsStart').style.display = 'none';

var swfa = swff; 

document.getElementById('swf').innerHTML = swfa;

}

function odliczaj(o,sek){
o=document.getElementById('sekundy');
o.innerHTML=sek
if(sek>0)setTimeout(function(){odliczaj(o,--sek)},1e3)
}

