/*
Cross browser marquee script II
*/


//Specify the marquee's width (in pixels)
var marqueewidth=250
//Specify the marquee's height
var marqueeheight=75
//Specify the marquee's scroll speed (larger is faster)
var speed=2
//Specify the marquee contents
var marqueecontents='<FONT COLOR=#D1F1F1><B>OFE Commercial Union - uznany<BR> za najlepszy fundusz emerytalny<BR> w Europie Środkowej i Wschodniej<BR> w 2006 roku (prestiżowa nagroda<BR> "Investment & Pensions Europe").<BR><BR> OFE Commercial Union - tytuł<BR> Studenckiego Produktu roku 2007<BR> w kategorii studencka emerytura.<BR><BR> OFE Commercial Union - według<BR> gazety giełdy "Parkiet" najlepszym<BR> funduszem emerytalnym w 2007 roku.</B></FONT>'

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",50)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}

window.onload=regenerate2
