// 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["V"] = new pObject("Paint Brushes","CON010",0.00,1.00,1,"");
productData["Q"] = new pObject("Paper Cups Small","CON021",1.88,1.00,1,"");
productData["R"] = new pObject("Paper Cups Large","CON022",3.13,1.00,1,"");
productData["T"] = new pObject("Latex Gloves","CON040",0.00,1.00,1,"");
productData["U"] = new pObject("Face Masks","CON050",2.52,1.00,1,"");
productData["S"] = new pObject("Mixing Sticks","CON060",0.60,1.00,1,"");
productData["F"] = new pObject("Super Seam Fabric Cement","FR010",0.00,1.00,1,"");
productData["G"] = new pObject("Clear Non Taut Dope","FR020",0.00,1.00,1,"");
productData["A"] = new pObject("Ceconite 102","FR030",6.63,1.00,1,"");
productData["B"] = new pObject("Ceconite Tape 25mm","FR045",5.52,1.00,1,"");
productData["C"] = new pObject("Ceconite Tape 50mm","FR055",8.54,1.00,1,"");
productData["D"] = new pObject("Ceconite Tape 75mm","FR065",12.72,1.00,1,"");
productData["E"] = new pObject("Eyelets AN231 x 10","FR070",1.78,1.00,1,"");
productData["H"] = new pObject("Thinners","FR080",0.00,1.00,1,"");
productData["J"] = new pObject("Rib Lacing Thread","",0.00,1.00,1,"");
productData["K"] = new pObject("Rib Stitching Needle","",0.00,1.00,1,"");
productData["L"] = new pObject("Pinking Shears","",0.00,1.00,1,"");
productData["N"] = new pObject("Ceconite Covering Manual","BK190",5.30,1.00,0,"");

		// ...Data from Magic XL Spreadsheet

		ArrayDone = true;
	};
}



// Descriptions & Data for Drop-Down Selection Boxes
// Also From XL Spreadsheet
function DoCement_SIZE()
{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$Cement_SIZE", "Select Quantity", 4);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("FR011", "100 ml", "4.45");
    LineArray[1] = new BoxLine("FR012", "250ml", "7.44");
    LineArray[2] = new BoxLine("FR013", "500ml", "12.27");
    LineArray[3] = new BoxLine("FR014", "1000ml", "21.16");

    BuildSelection(BoxDefn, LineArray);
}

function DoDope_SIZE()
{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$Dope_SIZE", "Select Quantity", 3);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("FR021", "250ml", "5.72");
    LineArray[1] = new BoxLine("FR022", "500ml", "9.29");
    LineArray[2] = new BoxLine("FR023", "1000ml", "14.64");

    BuildSelection(BoxDefn, LineArray);
}

function DoThinner_SIZE()
{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$Thinner_SIZE", "Select Quantity", 3);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("FR081", "250ml", "4.44");
    LineArray[1] = new BoxLine("FR082", "500ml", "7.44");
    LineArray[2] = new BoxLine("FR083", "1000ml", "12.72");

    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 DoThreadForm()

{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$ThreadForm", "Select Thread Type", 3);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("FR091", "Linen Hand Sewing Thread size 18  50 grms", "5.02");
    LineArray[1] = new BoxLine("FR092", "Ceconite (Polyester) Hand Sewing Thread", "6.86");
    LineArray[2] = new BoxLine("FR093", "Linen Rib Lacing Cord 500 grms ", "31.12");

    BuildSelection(BoxDefn, LineArray);
}

function DoNeedleForm()

{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$NeedleForm", "Select Needle Type", 2);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("FR101", "2 inch Curved", "0.99");
    LineArray[1] = new BoxLine("FR102", "4 inch Curved", "1.63");

    BuildSelection(BoxDefn, LineArray);
}

function DoPinkingForm()

{
//Selection Box Description
// Name, Initial Text, Number of lines in box
    BoxDefn = new BoxDefnition("$PinkingForm", "Select Type", 1);
    LineArray = new Array(BoxDefn.length);

// Text & Price Information for Each line in the box
    LineArray[0] = new BoxLine("FR112", "Fiskar type", "21.29");

    BuildSelection(BoxDefn, LineArray);
}

