
<!--

function mOvr(src,clrOver) {


document.getElementById(src).bgColor = clrOver;
document.getElementById(src).style.cursor= "hand"; 

}
function mOut(src,clrIn) {

document.getElementById(src).style.cursor= "hand";
document.getElementById(src).bgColor = clrIn;


}

// -->

