var tWidth='205px';var tHeight='25px';var moStop=true;var tSpeed=1;// enter your ticker content here (use \/ and \' in place of / and ' respectively)var content='If, IKEA, Santa María, SAS, Swedbank, Swedbank Robur';var cps=tSpeed;var aw, mq;var fsz = parseInt(tHeight) - 4;function startticker(){  if (document.getElementById) {    var tick = '<div style="float:left; position:relative;width:'+tWidth+';height:'+tHeight+';overflow:hidden;"'; if (moStop) tick += ' onmouseover="cps=0" onmouseout="cps=tSpeed"'; tick +='><div id="mq" style="position:absolute;left:0px;top:0px;white-space:nowrap;"><\/div><\/div>';    document.getElementById('marquee').innerHTML = tick;    mq = document.getElementById("mq");    mq.style.left=(parseInt(tWidth)+10)+"px";    mq.innerHTML='<span id="tx">'+content+'<\/span>';    aw = document.getElementById("tx").offsetWidth;    lefttime=setInterval("scrollticker()",50);  }}function scrollticker(){  mq.style.left = (parseInt(mq.style.left)>(-10 - aw)) ?parseInt(mq.style.left)-cps+"px" : parseInt(tWidth)+10+"px";}                  window.onload = startticker;