  // object dat alle informatie bevat (een lijst met object):
	var
		componentenLijst = new ComponentenLijst(),
		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 ComponentenLijst() {
	
//// TP x2.5			
			this["hs3-5"] = new Component("$1,590.00");
			this["hs3-10"] = new Component("$1,950.00");
			this["hs3-25"] = new Component("$2,245.00");
			this["hs3-50"] = new Component("$2,620.00");
			this["hs3-100"] = new Component("$2,770.00");
			this["hs4-5"] = new Component("$1,620.00");
			this["hs4-10"] = new Component("$2,225.00");
			this["hs4-25"] = new Component("$2,800.00");
			this["hs4-50"] = new Component("$3,450.00");
//// p x4
			this["pico3204"] = new Component("$1,990.00");
			this["pico3205"] = new Component("$2,943.00");
			this["pico3206"] = new Component("$3,927.40 ");
			this["pico212/3"] = new Component("$2,011.00 ");
			this["pico212/100"] = new Component("$4,702.00 ");
			this["pico3224"] = new Component("$1,806.50 ");
			this["pico3424"] = new Component("$3,163.00 ");
			this["pico5204"] = new Component("$7,727.40 ");
//// v x4
			this["fluke123"] = new Component("$4,698.60");
			this["fluke199"] = new Component("$8,640.84");
//// v x3
			this["vellemanhps10"] = new Component("$456.00");
			this["vellemanhps40"] = new Component("$1,074.00");
//// v x4
			this["vellemanaps230"] = new Component("$2,086.20");
			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);	
	}