function checkPriceList()
	{
	var Posistion = false;
	var send_by = false;

	//SEE IF AND WHAT POSITION RADIO BUTTON SELECTED
	for (counter = 0; counter < document.price_list.Posistion.length; counter++)
		{
		//If a radio button has been selected it will return true(If not it will return false)
		if (document.price_list.Posistion[counter].checked)
		Posistion = true; 
		}

	//SEE IF AND WHAT send_by RADIO BUTTON SELECTED
	for (counter = 0; counter < document.price_list.send_by.length; counter++)
		{
		//If a radio button has been selected it will return true(If not it will return false)
		if (document.price_list.send_by[counter].checked)
		send_by = true; 
		}


	if((document.price_list.Name.value == "")||(document.price_list.Address.value == "")||(document.price_list.Town.value == "")||(document.price_list.County.value == "")||(document.price_list.Post_code.value == "")||(document.price_list.Email_Address.value == "")||(document.price_list.Phone_Number.value == ""))
		{
		alert ('Please make sure you have completed the following fields:\n  - Name\n  - Address\n  - Town\n  - County\n  - Post code\n  - E-mail Address\n  - Telephone Number\n  - Your Position At Practice\n  - How would you like to be contacted');
		return(false);
		}
	else
		{
		//CHECK IF POSITION IS SELECTED
		if (!Posistion)
			{
			// If there were no selections made display an alert box 
			alert("Please Fill In your Position at practice.")
			return (false);
			}
		else
			{
			//CHECK IF send_by IS SELECTED
			if (!send_by)
				{
				// If there were no selections made display an alert box 
				alert("Please state how you would like to be contacted.")
				return (false);
				}
			else
				{
				return (true);
				}
			}
		//return (true);
		}
	}