		var strOS, strTemp;

		strOS = "other";

		strTemp = navigator.appVersion.toLowerCase();

		if (strTemp.indexOf("win") > 0)
			strOS = "windows";

		if (strTemp.indexOf("mac") > 0)
			strOS = "mac";


		if (strOS.toLowerCase() == "mac")
		{
			var strStyle;

			strStyle='<STYLE type="text/css">';
			strStyle= strStyle + '#divNewsCont { CLIP: rect(0px 170px 190px 0px); HEIGHT: 205px; LEFT: 20px; OVERFLOW: hidden; POSITION: absolute; TOP: 310px; VISIBILITY: visible; WIDTH: 300px; }';
			strStyle= strStyle + '#divNewsText { LEFT: 0px; POSITION: absolute; TOP: 0px }';
			strStyle= strStyle + '</STYLE>';

			document.write(strStyle);
		}
		else
		{
			var strStyle;

			strStyle='<STYLE type="text/css">';
			strStyle= strStyle + '#divNewsCont { CLIP: rect(0px 230px 190px 0px); HEIGHT: 70px; OVERFLOW: hidden; POSITION: absolute; TOP: 325px; VISIBILITY: visible; WIDTH: 232px; }';
			strStyle= strStyle + '#divNewsText { LEFT: 0px; POSITION: absolute; TOP: 0px }';
			strStyle= strStyle + '</STYLE>';

			document.write(strStyle);
		}

	   //Staring point for scroller inside a div
	   var tp=100;
	   var tm;
	   
	   function makeMove(maxScrollLimit)
	   {
   
		   tm=setTimeout("makeMove(" + parseInt(maxScrollLimit) + ")", 31); // Set Time interval for scrolling, this is scrolling speed.

		   document.getElementById("divNewsText").style.top=tp;

		   tp--;

		   if(tp==-parseInt(maxScrollLimit))
			   tp=100; //Starting point for scroller inside a div
	   }   
	   
	   	function pauseTicker()
		{
			clearInterval(tm);
		}