
function changeColor(name)
	{
	/*alert(name);*/	/*document.all.c1.style.backgroundColor="#ffffff";*/
eval("document.all."+name+".style.backgroundColor='#ffffff'");		
	}
function orgColor(name)
	{
	/*alert(name);*/	/*document.all.c1.style.backgroundColor="#ffffff";*/
eval("document.all."+name+".style.backgroundColor='#99cccc'");		
	}

 function scrollit(seed)
	{
		var msg="Environmental Management Information System developed by CMC Limited, Kolkata";
		var out="";
		var c=0;
		if (seed>125)
		{	seed--;
			var cmd="scrollit("+seed+")";
			timerTwo=window.setTimeout(cmd,100);
		}
		else if(seed<=125 && seed>0)
		{	for (;c<seed;c++)
				{ out+=" ";
				}
			out+=msg;
			seed--;
			var cmd="scrollit("+seed+")";
			window.status=out;
			timerTwo=window.setTimeout(cmd,100);
		}		
		else if(seed<=0)
		{	
			    seed=125
				seed--;
				var cmd="scrollit("+seed+")";
				window.status=out;
				timerTwo=window.setTimeout(cmd,100);
			
		}
	}
