function shwhd(id) {
 obj = document.getElementsByTagName("div");
 if (obj[id].style.visibility == 'visible'){
 obj[id].style.visibility = 'hidden';
 }
 else {
 obj[id].style.visibility = 'visible';
 }
}

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_gq(){
document.write("<a href='mailto:quantar.mx@gmail.com' title='quantar.mx&#64;gmail.com'>")
}

function crr_info(){
document.write("<a href='mailto:info@heartnskull.com.mx' title='info&#64;heartnskull.com.mx'>")
}

function ce(){
document.write("</a>")
}
