// 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)
	{
		// Data from Magic XL Spreadsheet...

productData["A"] = new pObject("Magneto Timing Light","ET010",0.00,1.00,1,"");
productData["B"] = new pObject("Bendix Magneto Lock","ET020",6.96,1.00,1,"");
productData["C"] = new pObject("Differential Comp Tester","ET030",0.00,1.00,1,"");
productData["D"] = new pObject("Direct Reading Comp Tester","ET040",19.38,1.00,1,"");
productData["F"] = new pObject("Econ Electrode Gapping Tool","ET060",7.25,1.00,1,"");
productData["G"] = new pObject("Adj Plug Gapping Tool","ET070",14.00,1.00,1,"");
productData["H"] = new pObject("Spark Plug Wire Feeler gauge","ET080",8.48,1.00,1,"");
productData["J"] = new pObject("Universal Plug Gap Tool","ET090",3.23,1.00,1,"");
productData["K"] = new pObject("Spark Plug Helli Coil M14","ET100",0.00,1.00,1,"");
productData["L"] = new pObject("Copper Slip Grease","ET110",2.91,1.00,1,"");
productData["M"] = new pObject("Std Feeler Gauge","ET120",2.86,1.00,1,"");
productData["N"] = new pObject("15mm Deep Socket","ET130",5.06,1.00,1,"");
productData["O"] = new pObject("M14 Spark Plug Socket 3/8","ET140",9.83,1.00,1,"");
productData["P"] = new pObject("Torque Wrench 3/8","ET150",24.28,1.00,1,"");
productData["Q"] = new pObject("Battery Hydrometer","ET160",7.24,1.00,1,"");
productData["R"] = new pObject("Distilled Water 1 ltr","ET170",1.28,1.00,1,"");
productData["S"] = new pObject("Oil Filter Strap Wrench","ET180",3.90,1.00,1,"");
productData["T"] = new pObject("Eezi Bleed Brake Bleeder","ET190",15.75,1.00,1,"");
productData["U"] = new pObject("12V Inspection Lamp","ET200",10.58,1.00,1,"");
productData["V"] = new pObject("Off Set Funnel","ET210",3.12,1.00,1,"");

		// ...Data from Magic XL Spreadsheet

		ArrayDone = true;
	};
}

function DoMag_tlightForm()
{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$Mag_tlightForm", "Select Single or Dual Mag", 2);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("ET011", "Single Magneto Timing Light", "40.83");
    LineArray[1] = new BoxLine("ET012", "Dual Magneto Timing Light", "43.53");

    BuildSelection(BoxDefn, LineArray);
}

function DoDiff_PT_Form()
{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$Diff_PT_Form", "Select Item Required", 3);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("ET031", "Differential Pressure tester", "53.07");
    LineArray[1] = new BoxLine("ET032", "M10 x 1.0 Adaptor", "9.50");
    LineArray[2] = new BoxLine("ET033", "M12 & M14 x 1.25 Adaptor", "9.59");


    BuildSelection(BoxDefn, LineArray);
}

function DoSP_Heli_coil_Form()
{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$SP_Heli_coil_Form", "Select Heli-coil size", 4);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("ET101", "M12 x 1.25", "50.87");
    LineArray[1] = new BoxLine("ET102", "M14 x 1.25", "59.05");
    LineArray[2] = new BoxLine("HT058", "Helicoil Insert M12 x 1.25", "1.23");
    LineArray[3] = new BoxLine("HT059", "Helicoil Insert M14 x 1.25", "1.27");

    BuildSelection(BoxDefn, LineArray);
}
