function LmOver(id1, clr) {
 document.getElementById(id1).style.backgroundColor = clr;
 document.getElementById(id1).style.cursor = 'hand'
}

function LmOut(id1, clr) {
 document.getElementById(id1).style.backgroundColor = clr;

}

function LmUp(path) {
 location.href = path;
}
