// JavaScript Document

function submitPhoneType(phonename)
{
	if(document.form4.phoneType.value=="Contract")
	{
		document.form4.action = "Phone_Deal.asp?Ph=" + phonename;
		document.form4.submit();
	}
	
	else if(document.form4.phoneType.value=="PayG")
	{
		document.form4.action = "Phone_Dealpayg.asp?Ph=" + phonename;
		document.form4.submit();
	}
	else if(document.form4.phoneType.value=="SimFree")
	{
		document.form4.action = "Phone_Dealsimfree.asp?Ph=" + phonename;
		document.form4.submit();
	}
	else if(document.form4.phoneType.value=="Clearance")
	{
		document.form4.action = "clearance_deal.asp?Ph=" + phonename;
		document.form4.submit();
	}
}