function despliega(rid)
{
   current=(document.getElementById(rid).style.display == 'none') ? 'block' : 'none';
   document.getElementById(rid).style.display = current;
}
//Funcion Favoritos---------------
function nuevofavorito(pagina,descripcion){
if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
var url=pagina;
var titulo=descripcion;
window.external.AddFavorite(url,titulo);
}
else {
if(navigator.appName == "Netscape") 
alert ("Press Crtl+D to add this site in your Bookmarks o Favoritos");
}
}
//---------------------
