var ie4,ns4;

//ie4=(document.all)?true:false;
//ns4=(document.layers)?true:false;

//if (ie4)
//{
	//window.onload = MarkCurSel;
			document.onmouseover = MouseHandler;
			document.onmouseout = MouseHandler;
			document.onmousedown = DownHandler;
			document.onmouseup = UpHandler;

			var nScrollDelay = 15
			function IncreaseSpeed()
			{
				if(nScrollDelay > 10)
				{
					nScrollDelay -= 5 ;
					marquee.scrollDelay = nScrollDelay;
					marquee.trueSpeed = 1;	
					marquee.scrollAmount = 1;
					SaveScrollDelay();
				}
			}

			function DecreaseSpeed()
			{
				if(marquee.scrollDelay < 40)
				{
					nScrollDelay += 5;
					marquee.scrollDelay = nScrollDelay ;
					marquee.trueSpeed = 1;
					marquee.scrollAmount = 1;
					SaveScrollDelay();
				}

			}

			function SaveScrollDelay()
			{
				var exp = new Date();
				var tenYearsFromNow = exp.getTime() + (10 * 365 * 24 * 60 * 60 * 1000);
				exp.setTime(tenYearsFromNow);
				document.cookie = "scrolldelay=" + nScrollDelay + "; expires=" + exp.toGMTString();
			}
	function MouseHandler()
	{
		var element = window.event.srcElement;
		if(element.className == "LeftNavOff")
		{
			element.className = "LeftNavUp";
		}
		else if(element.className == "LeftNavUp" || element.className == "LeftNavDown")
		{
			element.className = "LeftNavOff";
		}

	}

	function DownHandler()
	{
		var element = window.event.srcElement;
		if(element.className == "LeftNavOff" || element.className == "LeftNavUp")
		{
			element.className = "LeftNavDown";
		}
	}

	function UpHandler()
	{
		var element = window.event.srcElement;
		if(element.className == "LeftNavDown")
		{
			element.className = "LeftNavUp"
		}

	}
document.write("<font size='1' face='Verdana, Arial, Helvetica, sans-serif' color='#FFFFFF'><b>")	
document.write("<marquee id='marquee'onMouseover='marquee.stop();' ");
document.write("onMouseout='marquee.start();' truespeed='1' scrolldelay='25' ");
document.write("scrollamount='1' border='0'> ");
// To be updated from this part only.

//document.write("&nbsp; &nbsp; Assam Police pledges to keep the tri-colour flying..... ");
//document.write("&nbsp; &nbsp;DGP, Assam wishes happy Independence Day to all.");
//document.write("&nbsp; &nbsp; Investigation is on.");
//document.write("&nbsp; &nbsp;  5 powerful BOMBs recovered by Assam Police on 25/12/07 at Darrang Dist. from a private passenger bus");
//document.write("&nbsp; &nbsp; :: Assam Police is gearing up to tackle a potentially problematic Panchayat election :: 19 year Sanjay Das alias Lengera of ULFA's 709 battalion was arrested in Baksa district by Assam Police");
//document.write("&nbsp; &nbsp;  Two more policemen (Mayaram Kalita(54) and Royal K Sangma(35) of 8th AP Bn ) became martyrs, encountered with so called BLACK WIDOW at Phiding Railway Stn., under Mahur PS of NC Hills district on 18/12/2007  ...");
//document.write("&nbsp; &nbsp;  Police gearing up to face renewed ULFA threat in Upper Assam ...");
//document.write("&nbsp; &nbsp;  ISI agent SM Alam alias Mojibullah Alam was arrested in Guwahati ...");
//document.write(" The Assam Police is hosting 56th ALL INDIA POLICE ATHLETIC CHAMPIONSHIP-07 at IGA Stadium, Sarusojai, Guwahati from 13th to 17th Nov’07 ");
//document.write("&nbsp; &nbsp; MASKARA BOP1 61 BOP(SM) 62 BP 64 BP(SM) 61");
//document.write("&nbsp; &nbsp; GANGABARI BP(CL) 73/74");
document.write("</marquee></font>");
