    function despMenu(nombre,sn)
	{
		obj = document.getElementById(nombre);
		if (sn > 0)
			obj.style.display = "block";
		else
			obj.style.display = "none";
	}

	//LA SIGUINENTE FUNCION SE HIZO POR QUE EL TAG <DOCTYPE HTML....> NO ME DEJA CREAR ESTILOS CON DISPLAY EN NONE SI ESTA
	//ENTRE COMILLAS, EJEMPLO: <div style="display:'none'>, Y COMO EL MENU QUE SE GENERA DINAMICAMENTE LO GENERA CON COMILLAS SE HIZO
	//UNA FUNCION QUE RECORRE LA TABLA PARA ESCONDERLOS LA PRIMERA VEZ QUE MUESTRA LA PÁGINA
	//PERO AL FIN NO SE USO POR QUE SE DEJO EL MENU VERTICAL DE menu.asp, PERO SI SE UTILIZA EL MENU NORMAL ESTE FUNCIONA BIEN
	//hide_TablaMenuVer(); 
	function hide_TablaMenuVer(){
		obj_TablaMenuVer = document.getElementById('TablaMenuVer');
		var arr = obj_TablaMenuVer.getElementsByTagName('SPAN');
		for (var i = 0; i < arr.length; i++){
			if(arr[i].className == "cssSubMenu"){
				arr[i].style.display = 'none';
			}
		}
		var i = 0
	}
	
	function mostra(item, objeto) {
		obj = document.getElementById(item);
		objSub = document.getElementById(objeto);
		if (obj != null)
		{
			if (obj.style.display == "") {
				obj.style.display = "none";
			}
			else {
				obj.style.display = "";
				if (objSub != null){
					objSub.style.fontWeight	= "bold";
				}
			}
		}
	}
	 
	 function VBImageDisplay(ImageName,width,height) {
		url="VBImage.asp?Image=" + ImageName ;
		vf=window.open(url,'FotoGrande','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,menubar=no,width=' + width + ',height=' + height);
	 }
	 
	 function Search() {
		obj_txtSearch = document.getElementById('txtSearch');
		document.frmSearch.txtSearch.value =  obj_txtSearch.value;
		document.frmSearch.submit();
	}