<!--
// Ajax
function getDataServer(url){
     var xml = null;
     try{
         xml = new ActiveXObject("Microsoft.XMLHTTP");
     }catch(exception){
         xml = new XMLHttpRequest();
     }
     xml.open("GET",url, false);
     xml.send(null);
     if(xml.status == 404) alert("error 404");
     return xml.responseText;
}

// Links Menu Principal
function xtmenu(btn) {
	 window.location = btn.children[1].children[0].href;
	 return false;
}

//document.getElementById("menuhomeservices").children[0].children[1].children[0].onclick = xtmenu(document.getElementById("menuhomeservices").children[0].children[1].children[0]);

function openloader(divanim) {
	document.getElementById(divanim).style.display = '';
}

function heighting(idcontenedor,idcontenido) {
	var contenedor = document.getElementById(idcontenedor);
	var contenido = document.getElementById(idcontenido);
	contenido.style.height = (contenedor.offsetHeight)+"px";
}

-->
