function abre(link)
{
window.open(link);
}

function mOvr(src,clrOver) {
          src.style.cursor='pointer';  
	  src.bgColor = clrOver;
}

function mOut(src,clrIn) {
          src.style.cursor='default';
	  src.bgColor = clrIn;
}

