function SeleccionarProducto(pais)
{
	var sexo=0;
	var perdida=0;
	var circunstancia=0;
	var movilidad=0;
	
	if(document.getElementById("sexoF").checked)
		sexo=1;
	else
		sexo=2;
		
	if(document.getElementById("perdida1").checked)
	{
		perdida=1;
	}
	else
	{
		if(document.getElementById("perdida2").checked)
		{
			perdida=2;
		}
		else
		{
			if(document.getElementById("perdida3").checked)
			{
				perdida=3;
			}
			else
			{
				if(document.getElementById("perdida4").checked)
				{
					perdida=4;
				}
				else
				{
					if(document.getElementById("perdida5").checked)
					{
						perdida=5;
					}
				}
			}
		}
	}	

	if(document.getElementById("circunstancia1").checked)
	{
		circunstancia=1;
	}
	else
	{
		if(document.getElementById("circunstancia2").checked)
		{
			circunstancia=2;
		}
		else
		{
			if(document.getElementById("circunstancia3").checked)
			{
				circunstancia=3;
			}
			else
			{
				if(document.getElementById("circunstancia4").checked)
				{
					circunstancia=4;
				}
				else
				{
					if(document.getElementById("circunstancia5").checked)
					{
						circunstancia=5;
					}
				}
			}
		}
	}

	if(document.getElementById("movilidad1").checked)
	{
		movilidad=1;
	}
	else
	{
		if(document.getElementById("movilidad2").checked)
		{
			movilidad=2;
		}
		else
		{
			if(document.getElementById("movilidad3").checked)
			{
				movilidad=3;
			}
			else
			{
				if(document.getElementById("movilidad4").checked)
				{
					movilidad=4;
				}
			}
		}
	}
	
	if(sexo==0 || perdida==0 || circunstancia==0 || movilidad==0)
	{
		alert("Debe responder todas las preguntas");
	}
	else
	{
		Navegar("Selector/"+pais+"/Producto.aspx", {sexo: sexo, perdida: perdida, circunstancia: circunstancia, movilidad:movilidad });
	}
}
