<!--
  function MouseOver(Objeto,clrOver) {
	  Objeto.style.cursor = 'hand';
	  Objeto.bgColor = clrOver;
  }
  function MouseOut(Objeto,clrIn) {
	  Objeto.style.cursor = 'default';
	  Objeto.bgColor = clrIn;
  }
  function MouseClick(URL) {
	  location.href=URL;
  }
// -->
