  // object dat alle informatie bevat (een lijst met object):
	var
		VteqLijst = new VteqLijst(),
		aantalComponenten = 53;
		
	// functie om het object te maken:
	function Component(naam, href, id) {
	// Het object Component
		this.naam = naam;
		this.href = href;
		this.id = id;
		this.write = write; // schrijf-functie
		this.writeName = writeName; // naam-schrijf-functie
	// object teruggeven
		return(this);
	}
	function VteqLijst() {
	// Het object ComponentenLijst
	// het getal kan ook een id uit een database zijn

		













	
	///// BCN text
	
	this["BRAK 2010"] = new Component("Printer DIN A4 (order BRAK 2060 as well) ");
	this["BRAK 2050"] = new Component("Pre-wiring w/o weighing device. ");
	this["BRAK 2051"] = new Component("Pre-wiring w weighing device.  ");
	this["BRAK 2060"] = new Component("Infrared remote control basic 2000. ");
	this["BRAK 2110"] = new Component("Printer shelf ");
	this["BRAK 3040"] = new Component("4 cells weighing device for determining static and dynamic weights (has to be ordered together with the BRAK 2000). ");
	this["brak1000"] = new Component("VTEQ 1000 ");
	this["brak2000"] = new Component("VTEQ 2000 ");
	this["brak2080"] = new Component("VTEQ 2080 ");
	this["brak3000"] = new Component("VTEQ 3000 ");
	this["brak3080"] = new Component("VTEQ 3080 ");
	this["brak6000"] = new Component("VTEQ 6000 ");
	this["brak7000"] = new Component("VTEQ 7000 ");
	this["brak70004wd"] = new Component("VTEQ 7000 4WD ");
	this["VTEQ 3005"] = new Component("Additional Price monitor TFT 15 inch + special protected keyboard. ");
	this["VTEQ 3010"] = new Component("Infrared remote control. ");
	this["VTEQ 3020"] = new Component("Pedal force meter via infra red remote (order VTEQ 3010 as well). ");
	this["VTEQ 3030"] = new Component("Calibration Device. ");
	this["VTEQ 3040"] = new Component("Simultaneous monitor 21 inch (floor mounted) Inc. Monitor, 15 m cable and stand. ");
	this["VTEQ 3050"] = new Component("Console complete. ");
	this["VTEQ 3060"] = new Component("Pre-wiring. ");
	this["VTEQ 3140"] = new Component("Stand alone cabinet. VTEQ 3000 (incl. PC, Monitor, Keyboard, Printer) used in case of seperate visual inspection area when for example working in a testing station network. ");
	this["VTEQ 3161"] = new Component("CORUNDUM Coated for the 4 rollers. ");
	this["VTEQ 3999"] = new Component("Ramps & platforms. ");
	this["VTEQ 1010"] = new Component("Weighing system ");
	this["VTEQ 1020"] = new Component("Manual Start / Stop control box for roller set ");
	this["VTEQ 1030"] = new Component("Hand level force transducer ");
	this["VTEQ 1040"] = new Component("Walkway and motorbike restraining straps ");
	this["VTEQ 1050"] = new Component("Walkway and manual mechanical clamp for wheel not under test ");
	this["VTEQ 1060"] = new Component("Walkway and manual pnuematic clamp for wheel not under test ");
	this["VTEQ 1070"] = new Component("Simple calibration device ");
	this["VTEQ 1080"] = new Component("Pre wiring w/o weighing device ");
	this["VTEQ 1081"] = new Component("Pre wiring with weighing device ");
	this["VTEQ 1110"] = new Component("Roller frame ");
	this["VTEQ 1120"] = new Component("Special calibration device ");
	this["VTEQ 1130"] = new Component("Additional price for brake gear motor ");
	this["VTEQ 3150"] = new Component("21 inch colour monitor for PC. ");
	this["BRAK 6080"] = new Component("Center whole cover plate ");
	this["BRAK 6090"] = new Component("Hydaulic load simulator ");
	this["BRAK 6120"] = new Component("External pnuematic pressure converters (max10) for PM/PX display (min 2 req.) ");
	this["BRAK 6130"] = new Component("External hydraulic pressure converters (max10) for PM/PX display (min 2 req.) ");
	this["VTEQ 7010"] = new Component("Remote control with connection for pedal force meter ");
	this["BRAK 7020"] = new Component("8 Cell weighing device to determine axle weight ");
	this["BRAK 7040"] = new Component("Weight bearing cover plates for rollers ");
	this["BRAK 7060"] = new Component("Calibration device ");
	this["BRAK 6040"] = new Component("Pre wiring w/o weighing device ");
	this["BRAK 6041"] = new Component("Pre wiring with weighing device ");
	this["BRAK 7100"] = new Component("Kit for 4WD testing ");
	this["BRAK 7150"] = new Component("Kit to calculate and display the PM/PX values based on extrapolation method ");
	this["VTEQ 3020t"] = new Component("Pedal force meter (VTEQ 7010 required) ");
	this["BRAK 7210"] = new Component("Installation frame rollers ");
	this["BRAK 7112"] = new Component("Kit b frame weighing ");
	this["BRAK 6100"] = new Component("Simultaneous display (wall support) ");
	this["BRAK 6150"] = new Component("Kit to display PM/PX values (order BRAK 6120 & 6130 for proper operation) ");
	this["BRAK 6060"] = new Component("8 Cell weighing device to determine axle weight ");
	this["BRAK 6102"] = new Component("Complete console ");
	this["BRAK 6051"] = new Component("Corundum coating for 4 rollers ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");
	this[""] = new Component(" ");







// object teruggeven //"target='_top' style='text-decoration:none'"
		return(this);
	}
	
	function write() {
	document.write("<a style='text-decoration:none' Target='_top' href=" +  this.href + ">" + this.naam + "</a>" + "<BR>");	
	}

	function writeName() {
		document.write(this.naam);	
	}
