
function validatephone(cellnumber,carrierId)
{
	postUrl = "http://www.thenetpanel.com/includes/ringtonePost.asp?uid=" + cellnumber + "&caid=" + carrierId + "&action=1"
	window.open (postUrl,"pinconfirm","location=0,status=1,scrollbars=1,width=493,height=650"); 
}

function submitRingTone()
{
	var carrierListArray = new Array("66","59","65","68","60","64","67","61","63","69")
	var phoneNumfield = document.getElementsByName("Q_2566")[0]
	var cellPhoneCarrierList = document.getElementsByName("Q_2565")[0]
	if(phoneNumfield.value!=null)
	{
		if(phoneNumfield.value.length>=10)
		{
			if(cellPhoneCarrierList.selectedIndex != 0)
			{
				//then we can post infomation
				
				validatephone(phoneNumfield.value,carrierListArray[cellPhoneCarrierList.selectedIndex-1])
				
			}else
				{
					alert("Please Select A Carrier");
				}
		}else
		{
		  alert("Please Enter A Vaild Phone Number");
		}
	}
}