function pasek(nazwa, szerokosc, wysokosc)
{
document.write('<table id="tabela" border="0" width="100%"><tr><td></td></tr></table>');
element='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0" id="banerSwf" width="'+szerokosc+'" height="'+wysokosc+'" align="top" > <param name="movie" value="'+nazwa+'"><param name="bgcolor" value="#FFFFFF"><param name="quality" value="high"> <param name="scale" value="noscale"> <param name="salign" value="lt"><param name="align" value="top"><param name="menu" value="false"><param name="allowscriptaccess" value="samedomain"><embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+szerokosc+'" height="'+wysokosc+'" name="banerSwf" src="'+nazwa+'" bgcolor="#FFFFFF" quality="high" scale="noscale" salign="t" align="top" menu="false" swLiveConnect="true" allowScriptAccess="samedomain"></embed></object>';
el_left=0
el_top=document.body.scrollTop+document.body.clientHeight-wysokosc;


ns4=document.layers
ie4=document.all
ns6=document.getElementById&&!document.all

if (ns4){document.write('<layer name="element" top='+el_top+' left='+el_left+'>'+element+'</layer>')}
else{document.write('<div id="element" style="position:absolute;top:'+el_top+';left:'+el_left+'">'+element+'</div>')}

el_left_start=el_top_start=0
elmove=setInterval("el_move()",10)
document.banerSwf.style.width=tabela.clientWidth;

if (window.attachEvent) {
window.attachEvent("onresize", skaluj);
} else {
window.onResize=skaluj;
}

}

function el_move(){
if(ie4){ydiff=el_top_start-document.body.scrollTop; xdiff=el_left_start-document.body.scrollLeft}
else{ydiff=el_top_start-pageYOffset; xdiff=el_left_start-pageXOffset}

if(ydiff!=0){movey=Math.round(ydiff/5);el_top_start-=movey}
if(ydiff==-5) {el_top_start=document.body.scrollTop }
if(ydiff== 4) {el_top_start=document.body.scrollTop }
if(xdiff!=0){movex=Math.round(xdiff/5);el_left_start-=movex}

if(ns4){document.layers.element.top=el_top_start+el_top;document.layers.element.left=el_left_start+el_left}
if(ie4){document.all.element.style.top=el_top_start+el_top;document.all.element.style.left=el_left_start+el_left}
if(ns6){document.getElementById("element").style.top=el_top_start+el_top;document.getElementById("element").style.left=el_left_start+el_left}
}


function prin_f(){
if(ns4){document.layers.element.visibility="hide"}
if(ie4){document.all.element.style.visibility="hidden"}
if(ns6){document.getElementById("element").style.visibility="hidden"}
window.print()
if(ns4){document.layers.element.visibility="show"}
if(ie4){document.all.element.style.visibility="visible"}
if(ns6){document.getElementById("element").style.visibility="visible"}
}




function skaluj()
{
document.banerSwf.style.width=tabela.clientWidth;
el_top=document.body.clientHeight-30;
}

