function clearAll () {
	var elements = document.getElementsByTagName("td");
	for (var i =0 ; i < elements.length ; i++ ) {
		
			elements[i].style.backgroundColor= "#FFFFFF";
			elements[i].style.color= "#000000";
		
	}
}

//ED1C24
function LmOver(elem, clr){
	elem.style.backgroundColor = clr;
	//elem.children.tags('A')[0].style.color = "#000000";
	elem.style.cursor = 'hand';
	elem.style.color = '#1F60A9'; 
	
}

function LmOut(elem, clr, bclr){
	elem.style.color = clr;
	elem.style.backgroundColor = bclr;
	//elem.children.tags('A')[0].style.color = "#000000";
}
function LmDown(elem, clr, loc){
	clearAll();
	elem.style.backgroundColor = clr;
	elem.style.color = '#FFFFFF';
	parent.frames[1].location.href=loc;
}

function LmDown1(elem, clr, loc, loc2){
	elem.style.backgroundColor = clr;
	window.location.href=loc;
	parent.frames[1].location.href=loc2;
}
function LmDown2(elem, clr, loc){
	elem.style.backgroundColor = clr;
	parent.frames[1].location.href=loc;
}
