function buildLink(){

	wfForm = document.getElementById("FormFindAPhone");
	//wfForm.action="http://www.wirefly.com/phones/";
	//alert(wfForm.action);
	
	
	if(wfForm.radioFindAPhone1.checked)
	{
		wfForm.action="http://www.wirefly.com/phones/";
	}
	else if(wfForm.radioFindAPhone2.checked)
	{
		wfForm.action="http://www.wirefly.com/upgrades/";
	}
	else if(wfForm.radioFindAPhone3.checked)
	{
		wfForm.action="http://www.wirefly.com/add-a-line/";
	}
	
}