var t2;
var c12;
var pos2;
var realWidth2;
var tim2;
var width2 = 600;
var delay2 = 10;
function TickerInit2()
{
pos2 = width2;
t2 = document.getElementById("tt");
c12 = document.getElementById("cc1");
realWidth2 = c12.offsetWidth;
tim2 = setInterval("updateScroll2()",20);

}
function updateScroll2()
{
if (c12 != null)
{
pos2--;
if(pos2+realWidth2 < -1)
pos2 = width2+delay2;
c12.style['left'] = pos2 + "px";
}
}
function stopScroll2()
{
if (c12 != null)
{
clearInterval(tim2);
}
}
function startScroll2(){
if (c12 != null)
{
tim2 = setInterval("updateScroll2()", 20);
}
}

