function mover(obj){
  obj.style.cursor="hand";
}
function mout(obj){
  obj.style.cursor="auto";
}
function mclick(url){
  location.href=url;
}

function mtover(obj){
  obj.style.backgroundColor="d3e2ea";
  obj.style.color="#FFFFFF";
  obj.style.cursor="hand";
}
function mtout(obj){
  obj.style.backgroundColor="#000080";
  obj.style.color="#000080";
  obj.style.cursor="auto";
}
