function boton(name){
	idboton=eval("document."+name);
	fotboton="imgs/"+name+"on.gif";
	idboton.src=fotboton;
}

function botoff(name){
	idboton=eval("document."+name);
	fotboton="imgs/"+name+"off.gif";
	idboton.src=fotboton;

}

function show(capa){
	if(document.getElementById){
        document.getElementById(capa).style.visibility="visible";
	}
}



function Hide(capa){
	if(document.getElementById){
        document.getElementById(capa).style.visibility="hidden";
	}
}

function validar(campo, nombre){

		if(campo.value==""){
alert("Por favor, cumplimente el contenidos del campo "+ nombre);
			return false;
		}
		return true;
	}
