//-- 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++] = "FDC Flexible Denture Cleaner^FDC_Flexible_Denture_Cleaner.htm^^Flexible Denture Cleaner^9.96^0.00^17.5^FDC_Flexible_Denture_Cleaner.htm^0.00^PRAA004";
s[x++] = "Sonic Denture Cleaner^Sonic_Denture_Cleaner.htm^The best way to clean your Valplast Flexible Partial^valplast, tarter, bacteria, stain, removal^18.99^0.00^17.5^Sonic_Denture_Cleaner.htm^0.00^PRAA001";
s[x++] = "Val-Clean Sachets^Val-Clean_Sachets.htm^Box of 10 Sachets, Concentrated powder - 10 months supply^^24.95^0.00^17.5^Val-Clean_Sachets.htm^0.00^PRAA002";
s[x++] = "Flexible Denture Brush^Flexible_Denture_Brush.htm^Flexible Denture Brush^Flexible Denture Brush^7.49^0.00^17.5^Flexible_Denture_Brush.htm^0.00^PRAA005";


//--- ----------------------------------------------
//--- Define the Shipping Zones
var shippingZones   = new Array();
var zoneWeight      = new Array();   // weight^price
var taxItems      = new Array();   // taxcode^percent
var shippingPolicy  = "perbasket";

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);
taxItems[x++] = new taxrate("VAT Incl",0);

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("United Kingdom","VAT",0,"Postage and packaging to UK Mainland includes VAT at 17.5%",150,100,0,0,0,3,0,"perbasket")
zoneWeight[1] = new Array();


shippingZones[x++] = new zone("Republic of Ireland","VAT",0,"Postage & packing to ROI includes VAT at 17.5%",150,100,0,4,0,0,0,"perbasket")
zoneWeight[2] = new Array();


shippingZones[x++] = new zone("Courier Next Wkg Day","VAT",0,"Guaranteed delivey next working day",150,100,0,0,0,3.99,0,"perbasket")
zoneWeight[3] = new Array();
