<!-- Efecto Menú
function mOvr(src,clrOver) {if (!src.contains(event.fromElement)) {src.style.cursor = 'default';
src.bgColor = clrOver;
}
}
function mOut(src,clrIn) {if (!src.contains(event.toElement)) {src.style.cursor = 'default';
src.bgColor = clrIn;
}
}
// -->

<!-- Agregar a Favoritos
var url = "http://www.erasalud.com";
var title = "Era Salud";
function makeLink(){
if(document.all)
window.external.AddFavorite(url,title)
}
// -->

<!-- Busqueda por Categorías
site = "http://www.erasalud.com/categorias";
function combineMenus(dir, estado, categoria) {
with (dir) {
ste = estado.options[estado.selectedIndex].value;
stc = categoria.options[categoria.selectedIndex].value;
url = site + "/" + ste + "/" + stc + ".php";
window.location.href = url;
   }
}
// -->