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