// JavaScript Document
function MostrarFoto(n){
//validaciones espec�icas para nombre
	document.getElementById('Foto'+n).className = 'visible';
}
function OcultarFoto(){
//validaciones espec�icas para nombre
	document.getElementById('Foto1').className = "oculto";
	document.getElementById('Foto2').className = "oculto";
	document.getElementById('imgDelegado1').src='img/Delegados/Imagen.gif';
	document.getElementById('imgDelegado2').src='img/Delegados/Imagen.gif';
}

