// 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();
	}
}


function submitPhoneType1(phonename)
{
	if(document.formphtype1.phoneType.value=="Contract")
	{
		document.formphtype1.action = "phone_deal.asp?Ph=" + phonename;
		document.formphtype1.submit();
	}
	
	else if(document.formphtype1.phoneType.value=="PayG")
	{
		document.formphtype1.action = "phone_dealpayg.asp?Ph=" + phonename;
		document.formphtype1.submit();
	}
	else if(document.formphtype1.phoneType.value=="SimFree")
	{
		document.formphtype1.action = "phone_dealsimfree.asp?Ph=" + phonename;
		document.formphtype1.submit();
	}
	else if(document.formphtype1.phoneType.value=="Clearance")
	{
		document.formphtype1.action = "clearance-deals.asp?Ph=" + phonename;
		document.formphtype1.submit();
	}
}