//<!--
// www.egadgetfactory.com - online order form
// @author: ben baker
// @date: 24-01-08
//
// currency to work in
var CURRENCY = "&pound;";
var CURRENCY_LETTERS = "GBP";
// vat percentage
var TAX_NAME = "VAT";
var TAX_AMOUNT = 17.5;
//
//	Product class
// @param i = checkbox id
// @param n = name of product
// @param v = value/cost
//
function Product( i, n, v, v2, t ){
	this.id = i != undefined ? i : null;
	this.name = n != undefined ? n : null;
	this.value = v != undefined ? v : null;
	this.value2 = v2 != undefined ? v2 : null;
	this.type = t != undefined ? t : null;
}
//
//	Product data
//
var prod_arr = [
				/* SOFTWARE */
				new Product("PROD_001","Design &amp; Technology e-gadget pack CD-ROM", 299, "cdrom" ),
				new Product("PROD_002","KS1 Science e-gadget pack CD-ROM", 299, "cdrom" ),
				new Product("PROD_003","e-gadget library One Year Subscription", 299, "online" ),
				new Product("PROD_005","Science, Maths &amp; Technologyv-gadget pack", 299, "cdrom" ),


				/* HARDWARE */
				new Product("PROD_011","32 Activote Primary Handsets ( AVOTE 32 P )", 995, "hardware" ),
				new Product("PROD_012","Activote Primary Pack with 32 handsets ( AVOTE-MV-AP )", 1115, "hardware" ),
				new Product("PROD_013","Activote Secondary Pack with 32 handsets ( AV3KIT32UKAS )", 1115, "hardware" ),
				new Product("PROD_014","Activote Powerpoint Pack with 32 handsets ( AV3PPT32 )", 1495, "hardware" ),
				new Product("PROD_015","Activexpression Pack with 32 handsets ( AE1KIT32UK )", 2195, "hardware" ),


				/* PACKAGES */
				new Product("PROD_007","Voting Package 1 - For use with ACTIVBOARD", 1199, "package" ),
				/*new Product("PROD_008","Voting Package 1A - Stand alone pack  for use with other whiteboards", 1299, 1649, "package" ),*/
				new Product("PROD_008","Voting Package 1A - Stand alone pack  for use with other whiteboards", 1299, "package" ),
				
				new Product("PROD_009","Voting Package 2 - For use with ACTIVBOARD", 1349, "package" ),
				/*new Product("PROD_010","Voting Package 2A - Stand alone pack for use with other whiteboards", 1449, 1799, "package" )*/
				new Product("PROD_010","Voting Package 2A - Stand alone pack for use with other whiteboards", 1449, "package" )
				
				];
 //-->