// this script contains the specific data for the product(s) sold on this page



// prices updated 29-12-08



// Data from Magic XL Spreadsheet



var DoDebug=false;

var ArrayDone=false;

var productData=new Array();



function setProductArrayData(){

	if(ArrayDone == false)

	{

		if(DoDebug == true)

		{

		window.alert("setProductArrayData()");

		}

		// Data from Magic XL Spreadsheet...

productData["H"] = new pObject("Yellow Canopy Dusters","POL010",0.69,1.00,1,"");

productData["I"] = new pObject("Foaming Upholstery Cleaner","POL020",3.98,1.00,1,"");

productData["E"] = new pObject("G3 Rubbing Compound","POL030",8.96,1.00,1,"");

productData["G"] = new pObject("Mutton Cloth","POL040",2.11,1.00,1,"");

productData["D"] = new pObject("Plexus Canopy Cleaner","POL051",15.29,1.00,1,"");

productData["F"] = new pObject("Tape Residue Remover","POL060",3.77,1.00,1,"");

productData["C"] = new pObject("Hard Wax","POL070",0.00,1.00,2,"");

productData["B"] = new pObject("Honey Wax","POL080",14.69,1.00,1,"");

productData["J"] = new pObject("Synthetic Chamois","POL100",3.09,1.00,1,"");

productData["L"] = new pObject("Mer Polish","",0.00,1.00,1,"");

productData["M"] = new pObject("Airflow mop head 10 inch","POL130",30.30,1.00,2,"");

productData["O"] = new pObject("Meguiar's Canopy Polish No 10","POL051",9.01,1.00,1,"");

productData["R"] = new pObject("Meguiar's Canopy Polish No 17","POL052",10.08,1.00,1,"");

productData["P"] = new pObject("Polishing Machine","POL135",0.00,1.00,2,"");

productData["Q"] = new pObject("Carlack 68 Polish","POL140",20.92,1.00,1,"");





		// ...Data from Magic XL Spreadsheet



		ArrayDone = true;

	};

}



// Descriptions & Data for Drop-Down Selection Boxes

// Also From XL Spreadsheet



function DoMerForm()

{

//Selection Box Description

// Name, Initial Text, Number of lines in box

    BoxDefn = new BoxDefnition("$MerForm", "Select Quantity", 1);

    LineArray = new Array(BoxDefn.length);



// Text & Price Information for Each line in the box

    LineArray[0] = new BoxLine("POL122", "Mer Polish 1kg", "11.37");



    BuildSelection(BoxDefn, LineArray);

}

function DoHard_WaxForm()

{

//Selection Box Description

// Name, Initial Text, Number of lines in box

    BoxDefn = new BoxDefnition("$Hard_WaxForm", "Select Colour", 2);

    LineArray = new Array(BoxDefn.length);



// Text & Price Information for Each line in the box

    LineArray[0] = new BoxLine("POL071", "Brown Hard Wax", "14.03");

    LineArray[1] = new BoxLine("POL072", "White Hard Wax", "11.61");



    BuildSelection(BoxDefn, LineArray);

}



function DoPolisherForm()

{

//Selection Box Description

// Name, Initial Text, Number of lines in box

    BoxDefn = new BoxDefnition("$PolisherForm", "Select Items", 4);

    LineArray = new Array(BoxDefn.length);



// Text & Price Information for Each line in the box

    LineArray[0] = new BoxLine("POL135", "Polishing Machine", "226.79");

    LineArray[1] = new BoxLine("POL132", "Arbor for Polisher", "26.04");

    LineArray[2] = new BoxLine("POL130", "10inch  Airflow Mop", "30.30");

    LineArray[3] = new BoxLine("POL134", "Complete Polisher Kit", "267.19");





    BuildSelection(BoxDefn, LineArray);

}


