// JavaScript Document/*var abre = document.getElementById("submenu");var abre1 = document.getElementById("submenu1");function abremenu(){	abre.style.width = "300px";	}	function cierramenu(){	abre.style.width = "63px";	}function abremenu1(){	abre1.style.width = "322px";	}	function cierramenu1(){	abre1.style.width = "83px";}*/// JavaScript Document/*abre = function(cual){  capa = document.getElementById(cual);  if(capa.style.overflow != "visible"){    capa.style.overflow = "visible";    capa.style.border = "1px solid red";  } else {    capa.style.overflow = "hidden";        capa.style.border = "1px solid blue";    }  }  sigue = function(cual){  capa = document.getElementById(cual);  if(capa.style.overflow = "visible"){    capa.style.overflow = "visible";  } else {    capa.style.overflow = "hidden";    }  }*/abre = function(cual){  capa = document.getElementById(cual);  if(capa.style.display != "block"){    capa.style.display = "block";  } else {    capa.style.display = "none";    }  }