
function submitForm(objSel){


	//document.mainForm.optIndex1.value= document.mainForm.optVehicle.selectedIndex;
	//document.mainForm.optIndex2.value= document.mainForm.optFinance.selectedIndex;
	//document.mainForm.optIndex3.value= document.mainForm.optAbout.selectedIndex;
	strURL = objSel.options[objSel.selectedIndex].value;
	//window.document.mainForm.action = strURL;
	//window.document.mainForm.method = "post"
	//window.document.mainForm.submit();
	if (strURL != "") 
	{
		if (strURL.split("^")[0] == "I")
		{
			window.location.href=strURL.split("^")[1];
		}
		
		else if (strURL.split("^")[0] == "N")
		{
			popWindow = window.open(strURL.split("^")[1],'popWindow','status=yes,toolbar=yes,address=yes,scrollbars=yes,resizable=yes,width=800,height=500');
		}
		else
		{
		
			if (gsHost == "fallon.com" || gsHost == "bmwusa.com" )
			{
				if (top.frames.length > 2)
				{
				 	top.head.setMenuByCode(strURL.split("^")[1]);
				 }
				else
				{
					top.location.href="http://www.bmwusa.com/welcome.cfm?code=" + (strURL.split("^")[1]);
				}
			}
			else
			{
				alert("Navigate Externally");
			}
			
		}
	}
	//window.status=strURL;
	
}

