function Check()
	{
		
		if (document.Order.FirstName.value == "") 
		{
			alert("Please enter your first name in the space provided");
				document.Order.FirstName.focus();
		    	return false;
		}
		
		if (document.Order.Name.value == "") 
		{
			alert("Please enter your last name in the space provided");
				document.Order.Name.focus();
		    	return false;
		}
		
		if (document.Order.Address.value == "") 
		{
			alert("Please enter your address in the space provided");
				document.Order.Address.focus();
		    	return false;
		}
		
		if (document.Order.Postcode.value == "") 
		{
			alert("Please enter your postal code in the space provided");
				document.Order.Postcode.focus();
		    	return false;
		}
		
		if (document.Order.City.value == "") 
		{
			alert("Please enter your city in the space provided");
				document.Order.City.focus();
		    	return false;
		}
		
		if (document.Order.PhoneNo.value == "") 
		{
			alert("Please enter your telephonenumber in the space provided");
				document.Order.PhoneNo.focus();
		    	return false;
		}
		
		if (document.Order.PHORM_FROM.value == ""  || ((document.Order.PHORM_FROM.value.indexOf ('@',0) == -1) || (document.Order.PHORM_FROM.value.indexOf('.',0) == -1))) 
		{
			alert("Please enter your e-mail address in the space provided");
				document.Order.PHORM_FROM.focus();
		    	return false;
		}
		
		
		if (document.Order.Conditions.checked != true)
		{
		alert("To order you need to agree with the sales conditions of African Wellness.");
				return false;
		}
		
		if ((document.Order.PaymentMethod[0].checked != true) &
		(document.Order.PaymentMethod[1].checked != true))
		
		{
			alert("Please select a payment method.");
				return false;
		}
		
		if (document.Order.PaymentMethod[0].checked == true)
		{
			document.Order.redirect.value=  "http://www.africanwellness.co.uk/PPorder.htm";
			document.Order.WebsiteURL.value= "http://www.africanwellness.co.uk";
			document.Order.subject.value = "Hoodia order - PayPal";
			document.Order.PHORM_CONFIG.value = "configUK2.php";
			document.Order.OrderStatus.value= "Waiting for confirmation from PayPal.";
		}
		
		if (document.Order.PaymentMethod[1].checked == true)
		{
			document.Order.redirect.value= "http://www.africanwellness.co.uk/PPorder.htm";
			document.Order.WebsiteURL.value= "http://www.africanwellness.co.uk";
			document.Order.subject.value = "Hoodia order - PayPal";
			document.Order.PHORM_CONFIG.value = "configUK2.php";
			document.Order.OrderStatus.value= "Waiting for confirmation from PayPal.";
		}
		
		
		if (document.Order.OrderQuantity[0].checked == true)
		{
			document.Order.OrderAmount.value = "16.95";
			document.Order.ShipmentAmount.value = "1.50";
			document.Order.TotalAmount.value = "27.45";
		}
		if (document.Order.OrderQuantity[1].checked == true)
		{
			document.Order.OrderAmount.value = "32.00";
			document.Order.ShipmentAmount.value = "1.50";
			document.Order.TotalAmount.value = "33.50";
		}
		if (document.Order.OrderQuantity[2].checked == true)
		{
			document.Order.OrderAmount.value = "47.25";
			document.Order.ShipmentAmount.value = "1.50";
			document.Order.TotalAmount.value = "48.75";
		}
		if (document.Order.OrderQuantity[3].checked == true)
		{
			document.Order.OrderAmount.value = "62.00";
			document.Order.ShipmentAmount.value = "1.50";
			document.Order.TotalAmount.value = "63.50";
		}
		if (document.Order.OrderQuantity[4].checked == true)
		{
			document.Order.OrderAmount.value = "76.25";
			document.Order.ShipmentAmount.value = "1.50";
			document.Order.TotalAmount.value = "77.75";
		}
		
		
			document.Order.Surname.value = document.Order.Name.value;
			document.Order.mail.value = document.Order.PHORM_FROM.value;
			document.Order.referrer.value = document.referrer;
			
		
	}
