

function Click(id)
{	
	document.getElementById(id).style.backgroundColor='FF8135';
}

function unClick(id1,id2,id3,id4,id5,id6,id7,id8,id9,id10,id11,id12,id13)
{
	document.getElementById(id1).style.backgroundColor='dcdcdc';
	document.getElementById(id2).style.backgroundColor='dcdcdc';
	document.getElementById(id3).style.backgroundColor='dcdcdc';
	document.getElementById(id4).style.backgroundColor='dcdcdc';
	document.getElementById(id5).style.backgroundColor='dcdcdc';
	document.getElementById(id6).style.backgroundColor='dcdcdc';
	document.getElementById(id7).style.backgroundColor='dcdcdc';
	document.getElementById(id8).style.backgroundColor='dcdcdc';
	document.getElementById(id9).style.backgroundColor='dcdcdc';
	document.getElementById(id10).style.backgroundColor='dcdcdc';
	document.getElementById(id11).style.backgroundColor='dcdcdc';
	document.getElementById(id12).style.backgroundColor='dcdcdc';
	document.getElementById(id13).style.backgroundColor='dcdcdc';
}

function Over(id)
{
	if(document.getElementById('hdn').value != id)
	{
		//alert(id);
		document.getElementById(id).style.backgroundColor='ffcccc';
	}
}

function Out(id){
	if(document.getElementById('hdn').value != id)
	{
		document.getElementById(id).style.backgroundColor='dcdcdc';
	}
}