function SeleccionarProducto(pais)
{
	var perdida=0;
	var circunstancia=0;
	
		
	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;
				}
			}
		}
	}	

	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;
				}
			}
		}
	}

	
	if(perdida==0 || circunstancia==0)
	{
		alert("Debe responder todas las preguntas");
	}
	else
	{
		Navegar("Selector/"+pais+"/Producto.aspx", {perdida: perdida, circunstancia: circunstancia});
	}
}
