// © Copyright Sígfrid Ollé <sigfrid.olle@ajau.upf.es> - all rights reserved -
// Unauthorized use of this script will be prosecuted
function mOver(celda) {
      if (document.all) celda.style.cursor = 'hand'; 
	  celda.style.backgroundColor = "#e6e6cc"; 
}
function mOut(celda) {
	  if (document.all) celda.style.cursor = 'default'; 
	  celda.style.backgroundColor = "#cc9";
}
function mClick(url) {
	document.location = url;
}


