 function getStyle(oElm, strCssRule){

	var strValue = "";
	
	if(document.defaultView && document.defaultView.getComputedStyle){

		strValue = document.defaultView.getComputedStyle(oElm, "").getPropertyValue(strCssRule);

	}

	else if(oElm.currentStyle){

		strCssRule = strCssRule.replace(/\-(\w)/g, function (strMatch, p1){

			return p1.toUpperCase();

		});

		strValue = oElm.currentStyle[strCssRule];

	}

	return strValue;

}





var scrollerwidth; 

var scrollerheight;

var scrollerID;



// Scrollers speed here (larger is faster 1-10) 

var scrollerspeed=1 // Scrollers content goes here! Keep all of the message on the same line! 

var pauseit=1 // Change nothing below! 



scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1); //slow speed down by 1 for NS var 

copyspeed=scrollerspeed; 

var iedom=document.all||document.getElementById; 

var actualheight=''; 

var cross_scroller, ns_scroller; 

var pausespeed=(pauseit==0)? copyspeed: 0;

 

function populate(){ 

 if (iedom){ 

  cross_scroller=document.getElementById? document.getElementById(scrollerID) : document.all[scrollerID] ;

  cross_scroller.style.top=parseInt(scrollerheight)+2+"px"; 
  var tot = 0;
  for (var i=0; i<cross_scroller.childNodes.length; i++) {
    if (!isNaN(parseInt(cross_scroller.childNodes[i].offsetHeight))) tot += cross_scroller.childNodes[i].offsetHeight;
  }
  actualheight=tot; 
  cross_scroller=null;

 } 

lefttime=setInterval("scrollscroller()",40); 

} 



window.onload=function() {

  var el = document.getElementById("cont1393_1");

  el.style.overflow="visible";
  scrollerID = "cont1393_1";

 scrollerwidth=getStyle(el.parentNode, "width"); // Scrollers height here 

 scrollerheight=getStyle(el.parentNode, "height"); 

 el.parentNode.style.overflow="hidden";



	populate();

	 el.parentNode.onmouseover = function() {

		copyspeed=pausespeed;

	}

	el.parentNode.onmouseout =function() {

		copyspeed =scrollerspeed;

	}

	el=null;

	scrollscroller();

}

function scrollscroller(){ 

  if (iedom){ 

   cross_scroller=document.getElementById? document.getElementById(scrollerID) : document.all.newsreel ;

    if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+4)) 

    cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"; 

    else cross_scroller.style.top=parseInt(scrollerheight)+4+"px"; 

    cross_scroller=null;

  } 

} 