// this script contains the specific data for the product(s) sold on this page

// prices updated 30-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["N"] = new pObject("Vario Leak Detector","SA060",23.24,1.00,1,"");	
productData["G"] = new pObject("Loctite 601 Bearing Retainer 10ml","SA230",7.60,1.00,1,"");	
productData["GA"] = new pObject("Loctite 603 Bearing Retainer 10ml","SA231",7.72,1.00,1,"");	
productData["GB"] = new pObject("Loctite 641 Bearing Retainer 10ml","SA232",7.60,1.00,1,"");	
productData["GC"] = new pObject("Loctite 243 NutLock 10ml","SA233",7.50,1.00,1,"");	
productData["GD"] = new pObject("Loctite 270 StudLock 10ml","SA234",7.50,1.00,1,"");	
productData["P"] = new pObject("Evo Stik Contact Adhesive 50ml","SA210",2.38,1.00,1,"");	
productData["J"] = new pObject("Service Kit","SA030",9.81,1.00,1,"");	
productData["V"] = new pObject("Paint Brushes","CON010",0.00,1.00,1,"");	
productData["Q"] = new pObject("Duralac 150ml Tube","SA080",8.81,1.00,1,"");	
productData["T"] = new pObject("Nitrile Gloves","CON040",0.00,1.00,1,"");	
productData["U"] = new pObject("Face Masks","CON050",2.52,1.00,1,"");	
productData["R"] = new pObject("Adhesive Tape Residue Remover","POL060",3.77,1.00,1,"");	
productData["I"] = new pObject("Tamper Evident Sealer","SA040",0.00,1.00,1,"");	
productData["D"] = new pObject("General Purpose Grease 50g Tube","SA130",1.89,1.00,1,"");	
productData["K"] = new pObject("White Self Adhesive Dots","SA070",0.00,1.00,1,"");	
productData["H"] = new pObject("Flawfinder Dye Penetrant","SA050",0.00,1.00,1,"");	
productData["VA"] = new pObject("Polyurethane Adhesive White","SA240",9.32,1.00,1,"");	
productData["W"] = new pObject("Felt Washers Pkt 10","SA250",2.97,1.00,1,"");	
productData["X"] = new pObject("Cockpit Label Set","SA251",6.08,1.00,1,"");	
productData["Y"] = new pObject("Instrument Panel Labels","SA252",6.83,1.00,1,"");	
productData["Z"] = new pObject("Warning Label set of 3","SA253",1.58,1.00,1,"");	
	


		// ...Data from Magic XL Spreadsheet

		ArrayDone = true;
	};
}

// Descriptions & Data for Drop-Down Selection Boxes
// Also From XL Spreadsheet
function DoSpot_Check_Form()	
{	
//Selection Box Description	
// Name, Initial Text, Number of lines in box	
    BoxDefn = new BoxDefnition("$Spot_Check_Form", "Select Product", 3);	
    LineArray = new Array(BoxDefn.length);	
	
// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("SA051"," Flawfinder Cleaner ", "13.28");	
    LineArray[1] = new BoxLine("SA052"," Flawfinder Dye", "17.15");	
    LineArray[2] = new BoxLine("SA053"," Flawfinder Developer", "14.97");	
  	
    BuildSelection(BoxDefn, LineArray);	
}	
		
function DoTamper_Form()	
{	
//Selection Box Description	
// Name, Initial Text, Number of lines in box	
    BoxDefn = new BoxDefnition("$Tamper_Form", "Select Colour", 3);	
    LineArray = new Array(BoxDefn.length);	
	
// Text & Price Information for Each line in the box	
    LineArray[0] = new BoxLine("SA041"," Red", "4.18");	
    LineArray[1] = new BoxLine("SA042"," Orange", "4.18");	
    LineArray[2] = new BoxLine("SA043"," Green", "4.18");	
	
    BuildSelection(BoxDefn, LineArray);	
}	

function DoBrush_SIZE()
{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$Brush_SIZE", "Select Brush Size", 2);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("CON011", " 1 inch Brush ", "0.76");
    LineArray[1] = new BoxLine("CON012", " 2 inch Brush ", "1.00");

    BuildSelection(BoxDefn, LineArray);
}

function DoGlove_Size()
{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$Glove_Size", "Select Glove Size", 3);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("CON041", "Small", "1.04");
    LineArray[1] = new BoxLine("CON042", "Medium", "1.04");
    LineArray[2] = new BoxLine("CON043", "Large", "1.04");

    BuildSelection(BoxDefn, LineArray);
}

function DoDot_Size_Form()	
{	
//Selection Box Description	
// Name, Initial Text, Number of lines in box	
    BoxDefn = new BoxDefnition("$Dot_Size_Form", "Select Dot Size", 1);	
    LineArray = new Array(BoxDefn.length);	
	
// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("SA074","Selction 25/38/50 A5 page size", "12.03");	
    LineArray[1] = new BoxLine("SA071","25 mm", "3.33");	
    LineArray[2] = new BoxLine("SA072","38 mm", "3.33");	
    LineArray[3] = new BoxLine("SA073","50 mm", "3.33");	
    		
    BuildSelection(BoxDefn, LineArray);	
}	

