		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 200px 190px 0px); HEIGHT:100px; OVERFLOW: hidden; POSITION: absolute; TOP:378px; VISIBILITY: visible; WIDTH: 182px; }';
			strStyle= strStyle + '#divNewsText { LEFT: 0px; POSITION: absolute; TOP: 0px }';
			strStyle= strStyle + '</STYLE>';
			document.write(strStyle);
			}
			else if(strBrowser.toLowerCase() == "msie"){
			var strStyle;
			strStyle='<STYLE type="text/css">';
			strStyle= strStyle + '#divNewsCont { CLIP: rect(0px 200px 190px 0px); HEIGHT:100px; OVERFLOW: hidden; POSITION: absolute; TOP:335px; VISIBILITY: visible; WIDTH: 182px; border:0px solid red;}';
			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 200px 190px 0px); HEIGHT:100px; OVERFLOW: hidden; POSITION: absolute; TOP1:330px; TOP:382px; 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 200px 190px 0px); HEIGHT: 100px; OVERFLOW: hidden; POSITION: absolute; TOP: 382px; 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 200px 190px 0px); HEIGHT: 100px; OVERFLOW: hidden; POSITION: absolute; TOP: 383px; 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=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);
		}