Menu = {timer : null, current : null};
Menu.getStyle = function(name){
	if(document.getElementById) return document.getElementById(name).style;
	else if(document.all) return document.all[name].style;
}
Menu.show = function(name){
	if(this.timer) clearTimeout(this.timer);
	this.getStyle(name).display = "inline";
	this.current = name;
}
Menu.hide = function(){
	this.timer = setTimeout("Menu.doHide()",300);
}
Menu.doHide = function(){
	if(this.current){
		this.getStyle(this.current).display = "none";
		this.current = null;
	}
}

function ee(nlc) {
objetivo = window.open(nlc,'enlaces')
objetivo.focus()
}

function crr(){
document.write("<a href='mailto:directorioweb@gmail.com' title='directorioweb&#64;gmail.com'>")
}

function crre(){
document.write("<a href='mailto:directorioweb@gmail.com'>")
}

function ce(){
document.write("</a>")
}