var jsHp = true;

var pCreditCard = "whether you have any credit cards.";
var pDeposit = "the available deposit.";
var pGoods = "full details of the goods, ie. description, make, model, serial no. etc.";
var pOther = "any other relevant details.";
var pPrice = "the purchase price.";
var pStoreCard = "whether you have any store cards.";

var pSupplier = "the supplier's name, address and post code.";
var pVMake = "the make of the vehicle.";
var pVModel = "the model of the vehicle.";
var pVYear = "the year of make of the vehicle.";
var pVReg = "the registration number of the vehicle.";
var pVMileage = "the mileage shown on the vehicle.";
var pVoters = "whether you are on the electoral roll.";

var sChequeCard = "Cheque guarantee card";
var sCreditCard = "Credit card";
var sStoreCard = "Store card";
var sSupplier = "Suppliers name and address";
var sSupPhone = "Supplier's phone number";
var sVoters = "On voters roll";

function checkRadioButtons(theField,s)
{
	     for (var i=0;i<theField.length;i++) {
         if (theField[i].checked)
             return true;
     }
	     return warnEmpty (theField[0], s);
 }