function pickType(type)
{
	var url;
	var checked;
	if(type==1)
	{
		for (var i=0; i<document.moneyform.money.length; i++) 
		{
			if (document.moneyform.money[i].checked) 
				checked = document.moneyform.money[i].value;
		}
		
		switch(checked)
		{
			case "1":
				url = "personal_loans";
			break;
			case "2":
				url = "credit_cards";
			break;
			case "3":
				url = "mortgages";
			break;
			case "4":
				url = "term_assurance_leads";
			break;
			case "5":
				url = "savings_accounts";
			break;
			case "6":
				url = "current_accounts";
			break;
		}
	}
	else
	{
		for (var i=0; i<document.insuranceform.insurance.length; i++) 
		{
			if (document.insuranceform.insurance[i].checked) 
				checked = document.insuranceform.insurance[i].value;
		}
		
		switch(checked)
		{
			case "1":
				url = "home_insurance";
			break;
			case "2":
				url = "motor_insurance";
			break;
			case "3":
				url = "travel_insurance";
			break;
		}
	}
	
	var nURL = "http://icelollymoney.com/" + url + "/";
	
	if(navigator.appName=="Microsoft Internet Explorer")
		window.location.href = nURL;
	else
		window.location = nURL;
}