		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">';
			if(navigator.appName == "Microsoft Internet Explorer")
			{
			strStyle= strStyle + '#divNewsCont { CLIP: rect(0px 570px 180px 0px); HEIGHT: 305px; LEFT: 5px; OVERFLOW: hidden; POSITION: absolute; TOP: 25px; VISIBILITY: visible; WIDTH: 165px; }';
			}
			else
			{
			strStyle= strStyle + '#divNewsCont { CLIP: rect(0px 570px 180px 0px); HEIGHT: 305px; LEFT: 120px; OVERFLOW: hidden; POSITION: absolute; TOP: 230px; VISIBILITY: visible; WIDTH: 165px; }';
			} 
			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 180px 190px 0px); HEIGHT: 205px; OVERFLOW: hidden; POSITION: absolute; TOP: 225px; VISIBILITY: visible; WIDTH: 165px; }';
			strStyle= strStyle + '#divNewsText { LEFT: 0px; POSITION: absolute; TOP: 0px }';
			strStyle= strStyle + '</STYLE>';

			document.write(strStyle);
		}

	   //Staring point for scroller inside a div
	   var tp=170;
	   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=170; //Starting point for scroller inside a div
	   }   
	   
	   	function pauseTicker()
		{
			clearInterval(tm);
		}