
function changeColor(id,nm)
{
var k;
for(k=0; k<nm ; k++)
{ 
var e2 = document.getElementById(k).style; 
e2.backgroundColor="#55b6bd";
}
var e1 = document.getElementById(id).style; 
	e1.backgroundColor="#7accd7";
}
function changeColor_out(id,nm)
{
var k;
for(k=0; k<nm ; k++)
{ 
var e2 = document.getElementById(k).style; 
e2.backgroundColor="";
}
var e1 = document.getElementById(id).style; 
	e1.backgroundColor="";

}
function changeColor1(id)
{
//alert(id);
//var k=id;
document.getElementById(id).style.backgroundColor="#7accd7"; 
//alert(e21);
//e21.backgroundColor="red";
}

function changeColor2(id)
{
//alert("hello");
document.getElementById(id).style.backgroundColor=""; 

}

