		var strOS, strTemp;

		strOS = "other";
		strBrowser = "other";		


		strTemp = navigator.appVersion.toLowerCase();

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

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

			if (strTemp.indexOf("msie") > 0)
			strBrowser = "msie";

		
		if (strOS.toLowerCase() == "mac")
		{
			if(navigator.userAgent.indexOf("Safari") > 0)
			{
			var strStyle;

			strStyle='<STYLE type="text/css">';
			strStyle= strStyle + '#divNewsCont { CLIP: rect(0px 180px 190px 0px); HEIGHT: 100px; OVERFLOW: hidden; POSITION: absolute; TOP: 530px; VISIBILITY: visible; WIDTH: 182px;}';
			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: 100px; OVERFLOW: hidden; POSITION: absolute; TOP: 477px; VISIBILITY: visible; WIDTH: 182px;}';
			strStyle= strStyle + '#divNewsText { LEFT: 0px; POSITION: absolute; TOP: 0px }';
			strStyle= strStyle + '</STYLE>';

			document.write(strStyle);
			}
		}
		else if ((strOS.toLowerCase() == "windows") && (strBrowser.toLowerCase() == "msie"))
		{
			var strStyle;
			strStyle='<STYLE type="text/css">';
			strStyle= strStyle + '#divNewsCont { CLIP: rect(0px 180px 190px 0px); HEIGHT:100px; OVERFLOW: hidden; POSITION: absolute; TOP: 530px; VISIBILITY: visible; WIDTH: 182px; }';
			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:100px; OVERFLOW: hidden; POSITION: absolute; TOP: 530px; VISIBILITY: visible; WIDTH: 182px; }';
			strStyle= strStyle + '#divNewsText { LEFT: 0px; POSITION: absolute; TOP: 0px }';
			strStyle= strStyle + '</STYLE>';

			document.write(strStyle);
		}

	   //Staring point for scroller inside a div
	   var tp=20;
	   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=20; //Starting point for scroller inside a div
	   }   
	   
	   	function pauseTicker()
		{
			clearInterval(tm);
		}