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

