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

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){
	
	elem.style.backgroundColor = clr;
	parent.frames[1].location.href=loc;
}
function LmDown1(elem, clr, loc){
	elem.style.backgroundColor = clr;
	window.location.href=loc;
}
function LmDown2(elem, clr, loc){
	elem.style.backgroundColor = clr;
	parent.frames[1].location.href=loc;
}
