function solo_numeros(tecla_pulsada)
{
	var tecla;
	if(window.event) // Para Internet Explorer
	{
		tecla = tecla_pulsada.keyCode;
	}
	 else if(tecla_pulsada.which) // Otros Navegadores Netscape/Firefox/Opera
		{
		tecla = tecla_pulsada.which;
	}
	if (tecla == 8) 
	{
		return true;
	}

	else if (tecla < 48 || tecla > 57)
	{
		return false;
	}
	return true;
}

function solo_letras(tecla_pulsada)
{
	var tecla;
	
	if(window.event) // Para Internet Explorer
	{
		tecla = tecla_pulsada.keyCode;
	}
	 else if(tecla_pulsada.which) // Otros Navegadores Netscape/Firefox/Opera
		{
		tecla = tecla_pulsada.which;
	}	
	if (tecla == 8 || tecla == 32) 
	{
		return true;
	}else if ((tecla < 97 || tecla > 122) && (tecla < 65 || tecla > 90) && (tecla == 209) && (tecla == 241))
	{
		return false;
	}
	return true;
}

function filtrar_caracteres(tecla_pulsada)
{
	var tecla;
	if(window.event) // Para Internet Explorer
	{
		tecla = tecla_pulsada.keyCode;
	}
	 else if(tecla_pulsada.which) // Otros Navegadores Netscape/Firefox/Opera
		{
		tecla = tecla_pulsada.which;
	}
	if (tecla == 8 || tecla == 32 || tecla == 44 || tecla == 209 || tecla == 241) 
	{
		return true;
	}
	else if ((tecla >= 33 && tecla <= 34) || (tecla >= 36 && tecla <= 39) || (tecla >= 42 && tecla <= 44) || (tecla == 47) || (tecla >= 58 && tecla <= 64) || (tecla >= 91 && tecla <= 96) || ((tecla >= 123)))
	{
		alert("Caracter No Permitido");
		return false;
	}
	return true;
}

function validar_fecha(campo,valor)
{
	var dia = document.getElementById("dia"+campo).value;
	var mes = document.getElementById("mes"+campo).value;
	var ano = document.getElementById("ano"+campo).value;
	if (dia > 29 && mes == 2) 			
	{
		alert("Error: Febrero No Tiene Tantos Días");
		document.getElementById("mes"+campo).value="Mes";
		document.getElementById("ano"+campo).value="Año";
		document.getElementById("ano"+campo).disabled=true;
		document.getElementById("mes"+campo).focus();
		return false;
	}
	if ((mes == 4 || mes == 6 || mes == 9 || mes == 11) && (dia == 31))
	{
		alert("Error: Este Mes No Tiene 31 Días");
		document.getElementById("ano"+campo).disabled=true;
		document.getElementById("mes"+campo).value="Mes";
		document.getElementById("ano"+campo).value="Año";
		document.getElementById("mes"+campo).focus();
		return false;
	}
	if (document.getElementById("dia"+campo).value == "Día")
	{
		document.getElementById("mes"+campo).value="Mes";
		document.getElementById("ano"+campo).value="Año";
		document.getElementById("mes"+campo).disabled=true;
		document.getElementById("ano"+campo).disabled=true;
	}else{
		if (document.getElementById("mes"+campo).value == "Mes")
		{
			document.getElementById("ano"+campo).value="Año";
			document.getElementById("ano"+campo).disabled=true;
			document.getElementById("mes"+campo).disabled=false;
		}else{
			document.getElementById("ano"+campo).disabled=false;	
		}
	}			
	if (valor==1)
	{
		if ((ano % 4 == 0) && ((ano % 100 != 0) || (ano % 400 == 0)))				
		{
			var p=1;
		}else{
			if (dia == 29 && mes == 2)
			{
				alert("Error: El Día Fue Cambiado, Ya Que Ese Mes Tiene 28 Días");
				document.getElementById("dia"+campo).value="28";
				document.getElementById("dia"+campo).value.focus();
				return false;	
			}
		}
	}	
	return true;
}



