//Funcao para mudar de cor:
function mOvr(src,clrOver) { if (!src.contains(event.fromElement)) { src.style.cursor = 'hand'; src.bgColor = clrOver; } }
function mOut(src,clrIn) { if (!src.contains(event.toElement)) { src.style.cursor = 'default'; src.bgColor = clrIn; } }
function mClk(src) { if(event.srcElement.tagName=='TD'){ src.children.tags('A')[ 0].click(); } }


//Funcao oara adicionar a favoritos:
function MakeBkMark(strURL,strTitle) { 
	if (document.all) window.external.AddFavorite(strURL,strTitle); 
	else alert("Para adicionar o site HLERA.COM.BR aos seus favoritos, pressione CTRL + D."); 
	} 