<!--
function getURLsWFour()
		{

			var selString, selString2, selString3, selString4;
			var index, index2, index3, index4;
			var type;
			//Get index of the item selected
			index=document.getElementById("loc").selectedIndex;
			//Using the index, get the value
			selString=document.getElementById("loc").options[index].value;
			
			index2=document.getElementById("ctx").selectedIndex;
			//Using the index, get the value
			selString2=document.getElementById("ctx").options[index2].value;
			
			index3=document.getElementById("key").selectedIndex;
			//Using the index, get the value
			selString3=document.getElementById("key").options[index3].value;
			
			index4=document.getElementById("plc").selectedIndex;
			//Using the index, get the value
			selString4=document.getElementById("plc").options[index4].value;
			
			if(selString == "PP_REFI"){
				type = "PG2-Refi";
			}else if(selString == "PP_NEWHOME"){
				type = "PG2-HomeLoan";
			}else{
				type = "PG2-Equity";
			}
			
			if(selString.substring(0,2) == "")
			{
				alert("Please select a \"Type of Loan\".");
			}
			else if(selString2.substring(0,2) == "")
			{
				alert("Please select a \"Property Location\".");
			}
			else if(selString3.substring(0,2) == "")
			{
				alert("Please select a \"Credit Profile\".");
			}
			else if(selString4.substring(0,2) == "")
			{
				alert("Please select a \"Home Description\".");
			}
			else
			{
				window.location.href = "http://bankrateselect.securerights.org/urls.php?Name=bankrateselect&type=" + type + "&src=1001&loc=" + selString + "&plc=" + selString4 + "&key=" + selString3 + "&ctx=" + selString2;
			}
		}
	// -->