// 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["J"] = new pObject("Instrument Panel Blank ","",0.00,1.00,1,"");
		productData["K"] = new pObject("Instrument Template","TI410",0.00,1.00,1,"");
		
		
		// ...Data from Magic XL Spreadsheet
		
		ArrayDone = true;
	};
}

function DoPanel_Form()
{
	//Selection Box Description
	// Name, Initial Text, Number of lines in box
	BoxDefn = new BoxDefnition("$Panel_Form", "Select Panel Type", 14);
	LineArray = new Array(BoxDefn.length);
	
	// Text & Price Information for Each line in the box
	LineArray[0] = new BoxLine("CS091"," Std Cirrus ", "70.50");
	LineArray[1] = new BoxLine("CS091H"," Std Cirrus High Leg ", "70.50");
	LineArray[2] = new BoxLine("CS092"," ASW 15 ", "65.04");
	LineArray[3] = new BoxLine("CS093"," ASK 13 Front ", "70.86");
	LineArray[4] = new BoxLine("CS094"," ASK 13 Rear ", "64.81");
	LineArray[5] = new BoxLine("CS103"," ASK 8 ", "64.84");
	LineArray[6] = new BoxLine("CS095","Pegasus/ASW Rectangular Lifting Panel ", "71.43");
	LineArray[7] = new BoxLine("CS101","ASW 19 Lifting", "93.83");
	LineArray[8] = new BoxLine("CS102","ASW 19/20  Non Lifting", "93.83");
      LineArray[9] = new BoxLine("CS096","Discus b Non Lifting", "87.35");
	LineArray[10] = new BoxLine("CS097","Ventus b ", "87.35");
	LineArray[11] = new BoxLine("CS098","Mini Nimbus C", "87.35");
	LineArray[12] = new BoxLine("CS099","Nimbus 2C", "87.35");
	LineArray[13] = new BoxLine("CS104","LS7", "72.33");

	BuildSelection(BoxDefn, LineArray);
}

function DoTemplate_Form()
{
	//Selection Box Description
	// Name, Initial Text, Number of lines in box
	BoxDefn = new BoxDefnition("$Template_Form", "Select Stencil or Guide", 3);
	LineArray = new Array(BoxDefn.length);
	
	// Text & Price Information for Each line in the box
	LineArray[0] = new BoxLine("TI411"," 57 mm Stencil ", "4.28");
	LineArray[1] = new BoxLine("TI412"," 80 mm Stencil ", "4.28");
	LineArray[2] = new BoxLine("TI413"," Drill guide plate  ", "7.60");
	BuildSelection(BoxDefn, LineArray);
}

