function submitIt_checkout(theForm){

			if (theForm.vEmail.value == "") {
				alert("Please enter an Email Address")
				theForm.vEmail.focus()
				return false
			}

			if (theForm.vName.value == "") {
				alert("Please enter your name")
				theForm.vName.focus()
				return false
			}

			if (theForm.vAdd1.value == "") {
				alert("Please enter the first line of your address")
				theForm.vAdd1.focus()
				return false
			}

			if (theForm.vTown.value == "") {
				alert("Please enter the name of the town you want your goods to be delivered to")
				theForm.vTown.focus()
				return false
			}

			if (theForm.vCounty.value == "") {
				alert("Please enter the name of the County you want your goods to be delivered to")
				theForm.vCounty.focus()
				return false
			}

			if (theForm.vPC.value == "") {
				alert("Please enter your postcode")
				theForm.vPC.focus()
				return false
			}

			if (document.all||document.getElementById){
			for (i=0;i<theForm.length;i++){
			var tempobj=theForm.elements[i]
			if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
			tempobj.disabled=true
			}
			}

		return true
		}

function radio_button_checker()
{
// set var radio_choice to false
var radio_choice = false;

// Loop from zero to the one minus the number of radio button selections
for (counter = 0; counter < radio_form.radio_button.length; counter++)
{
// If a radio button has been selected it will return true
// (If not it will return false)
if (radio_form.radio_button[counter].checked)
radio_choice = true;
}

if (!radio_choice)
{
// If there were no selections made display an alert box
alert("Please Select Your Shipping Option.")
return (false);
}
return (true);
}