// JavaScript Document

function formSubmit(type,val)
{

	var url;
	if(type == "Network")
	{
		//alert(url)
	  url = "network_phones.asp?net=" + val;
	}
	else if (type == "SimFree")
	{
		url = "simfree.asp?manufacture=" + val;
	}
	else if(type == "Manufacturer")
	{
	  val = val.replace(" ","");
	  val = val.toLowerCase();
	  url = val + ".asp";
	}
	
	location.href = url;
}

