//-- The symbol to use for the javascript trolley and checkout
MonetarySymbol	= "&pound;"
//-- List of Products; used in the SEARCH and the checkout/basket
//-- Array key
//-- name^id.htm^summary^keyword^price^shipping^tax^shipping^weight^id^defaulttaxrate
var s = new Array();
var x=0;

s[x++] = "Standard House - Water Mag^Standard_House_-_Water_Mag.htm^100mm long to fit 15mm pipework^^40^3.50^17.5^Standard_House_-_Water_Mag.htm^0.00^PRAA100";
s[x++] = "Large House or Hotel - Water Mag^Large_House_or_Hotel_-_Water_Mag.htm^100mm long to fit 22mm pipework^^45^3.50^17.5^Large_House_or_Hotel_-_Water_Mag.htm^0.00^PRAA101";
s[x++] = "Farms and Greenhouses - Water Mag^Farms_and_Greenhouses_-_Water_Mag.htm^200mm long to fit 22mm pipework^^65^4.70^17.5^Farms_and_Greenhouses_-_Water_Mag.htm^0.00^PRAA102";
s[x++] = "Universal Swimming Pool - Water Mag^Universal_Swimming_Pool_-_Water_Mag.htm^300mm x 60mm diameter^^82^6.75^17.5^Universal_Swimming_Pool_-_Water_Mag.htm^0.00^PRAA107";
s[x++] = "Scale Stopper for Vending Machines^Scale_Stopper_for_Vending_Machines.htm^For pipes upto 15mm diameter^^40^3.50^17.5^Scale_Stopper_for_Vending_Machines.htm^0.00^PRAA108";
s[x++] = "Boiler Magnet^Boiler_Magnet.htm^100mm long to fit 15mm pipework^^40^3.50^17.5^Boiler_Magnet.htm^0.00^PRAA103";
s[x++] = "Industrial-Commercial Boiler Magnet^Industrial-Commercial_Boiler_Magnet.htm^240mm x 60mm, for 60mm diameter pipe^^82^6.75^17.5^Industrial-Commercial_Boiler_Magnet.htm^0.00^PRAA104";
s[x++] = "Beer Magnet^Beer_Magnet.htm^12/15mm and 22mm diameter of pipe versions^^40^3.50^17.5^Beer_Magnet.htm^0.00^PRAA106";
s[x++] = "One 15mm Water-mags Special Offer^One_15mm_Water-mags_Special_Offer.htm^Credit Crunch Special - 1 'shop soiled' Water-mag unit for £24.50 + VAT (UK postage and packing inc)^^24.5^0.00^17.5^One_15mm_Water-mags_Special_Offer.htm^0.00^PRAA110";


//--- ----------------------------------------------
//--- Define the Shipping Zones
var shippingZones   = new Array();
var zoneWeight      = new Array();   // weight^price
var taxItems      = new Array();   // taxcode^percent
var shippingPolicy  = "peritem";

function zone(title,taxrate,taxexempt,description,maxthres,maxprice,minthres,minprice,peritem,perbasket,perpercent,perpolicy){
	this.title        = title;
	this.taxrate      = taxrate;
	this.taxexempt    = taxexempt;
	this.description	= description;
	this.maxthres     = maxthres;
	this.maxprice     = maxprice;
	this.minthres     = minthres;
	this.minprice     = minprice;
	this.peritem      = peritem;
	this.perbasket    = perbasket;
	this.perpercent   = perpercent;
	this.policy   = perpolicy;
}

function taxrate(_key, _value){
	this.key        = _key;
	this.value        = _value;
}

x=0;
taxItems[x++] = new taxrate("VAT",17.5);
taxItems[x++] = new taxrate("TAX",10);

x=0;



shippingZones[x++] = new zone("Please Select","0",0," ",0,0,0,0,0,0,0,"none")
zoneWeight[0] = new Array();


shippingZones[x++] = new zone("UK shipping","VAT",0,"UK. Within the mainland of the UK",10000,100,0,0,0,0,0,"peritem")
zoneWeight[1] = new Array();
