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(); 
  }
}

function MM_openBrWindow(theURL,winName,features)
{ window.open(theURL,winName,features);
}

function favoritos(){

if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
window.external.AddFavorite('<%= urlsite %>', '<%= descricaosite %>');
}
else {
var msg = "Não esqueça de adicionar <%= descricaosite %> no seu Favoritos!";
if(navigator.appName == "Netscape") msg += " Pressione CTRL + D";
alert(msg);
   }
}