<!--

function dentro (obj) {
   obj.style.background="#004000";
   obj.style.color="white";
   obj.style.weight="bold";
   obj.style.cursor="hand"
}

function fuera (obj,tipo) {
  if (tipo == 'par') 
	obj.style.background="#CBDDCB";
  else
    obj.style.background="#90BA90";
 
  obj.style.color="black";
}


-->