// JavaScript Document

function redirectPage(ph_type,phonename)
{
	//alert(ph_type,phonename);
	if(document.frm_Type.phoneType.value=="Contract")
	{
		document.frm_Type.action = "alldeals.asp?id=" + phonename;
		document.frm_Type.submit();
	}
	
	else if(document.frm_Type.phoneType.value=="PayG")
	{
		document.frm_Type.action = "showpayasyougo.asp?id=" + phonename;
		document.frm_Type.submit();
	}
	else if(document.frm_Type.phoneType.value=="SimFree")
	{
		document.frm_Type.action = "showsimfreephone.asp?id=" + phonename;
		document.frm_Type.submit();
	}
	else if(document.frm_Type.phoneType.value=="Clearance")
	{
		document.frm_Type.action = "clearance-deals.asp?id=" + phonename;
		document.frm_Type.submit();
	}
	
}