var radString="TLP-MT4|S-VGA 800x600|850|TFT|2000 uur|Ja|Ultra-portable|3,3 Kg|Ja|400:1|Automatisch|3|Ja|€ 2.895,00@TDP-MT5|W-SVGA 848x480|1000|TFT|1000 uur|Ja|Ultra-portable|2,6 Kg|Ja|400:1|Automatisch|3|Ja|€ 5.895,00@TLP-MT7|W-XGA 1280x720|1000|TFT|4000|Ja|Portable|5,3 Kg|Ja|400:1|Automatisch|3|Beperkt|€ 6.350,00@TLP-260|S-VGA 800x600|1500|TFT|2000|Ja|Portable|3,2 Kg|Ja|400:1|Ja|3|Ja|€ 2.950,00@TDP-S3|S-VGA 800x600|2000|DLP|2000|Ja|Portable|2,6 Kg|Ja|400:1|Automatisch|3|Ja|€ 4.995,00@TDP-T3|XGA 1024x768|2000|DLP|2000|Ja|Portable|2,6 Kg|Ja|400:1|Automatisch|3|Ja|€ 5.835,00@TDP-P4|XGA 1024x768|1100|DLP|1100|Ja|Portable|1,4 Kg|Ja|500:1|Ja|3|Ja|€ 4.995,00@TLP-380|SVGA 800x600|2000|TFT|2000 uur|Ja|Portable|4,1 Kg|Ja|400:1|Automatisch|3|Ja|€ 4.850,00@TLP-B(ULTRA)2|XGA 1024x768|1250|TFT|2000|Ja|Portable|2,6 Kg|Ja|300:1|Automatisch|3|Ja|€ 3.795,00@TLP-560|XGA 1024x768|1300|TFT|1100|Ja|Portable|3,2 Kg|Ja|400:1|Ja|3|Ja|€ 3.495,00@TLP-680|XGA 1024x768|1500|TFT|2000|Ja|Portable|3,7 Kg|Ja|400:1|Automatisch|3|Ja|€ 4.750,00@TLP-780|XGA 1024x768|2000|TFT|2000|Ja|Stationair|4,1 Kg|Ja|400:1|Automatisch|3|Ja|€ 5.650,00@TLP-X20|XGA 1024x768|2500|TFT|1500|Ja|Portable|5,1 Kg|Ja|400:1|Automatisch|3|Ja|€ 7.495,00@TLP-251|SVGA 800x600|1100|TFT|2000|Ja|Portable|3,3 Kg|Ja|400:1|Ja|3|Ja|€ 4.536,00@TLP-551|XGA 1024x768|1100|TFT|2000|Ja|Portable|3,3 Kg|Ja|400:1|Ja|3|Ja|€ 5.217,00@TLP-681|XGA 1024x768|1500|TFT|2000|Ja|Portable|4,5 Kg|Ja|400:1|Automatisch|3|Ja|€ 6.578,00@TLP-781|XGA 1024x768|2000|TFT|2000|Ja|Portable|4,3 Kg|Ja|400:1|Automatisch|3|Ja|€ 7.395,00@TLP-X21|XGA 1024x768|2500|TFT|1500|Ja|Portable|6 Kg|Ja|400:1|Automatisch|3|Ja|€ 9.075,00";

var modString= new Array();

modString[0]="TLP-MT4";
modString[1]="TDP-MT5";
modString[2]="TLP-MT7";
modString[3]="TLP-260";
modString[4]="TDP-S3";
modString[5]="TDP-T3";
modString[6]="TDP-P4";
modString[7]="TLP-380";
modString[8]="TLP-B(ULTRA)2";
modString[9]="TLP-560";
modString[10]="TLP-680";
modString[11]="TLP-780";
modString[12]="TLP-X20";
modString[13]="TLP-251";
modString[14]="TLP-551";
modString[15]="TLP-681";
modString[16]="TLP-781";
modString[17]="TLP-X21";


function showdata(indx){
	var utskrift = "";  
	var temp = new Array();
	var arr = radString.split("@");
	for(var i=0;i<arr.length;i++){ 
		if(arr[i].indexOf(modString[indx]) != -1){
	 		temp[temp.length] = arr[i];
		}
	}
	for(var i=0;i<temp.length;i++){     
	  var ustr = temp[i].split("|");
	  var ust=ustr.join("<br>");
	  utskrift+= ust;
}    
	
	if (navigator.appVersion.indexOf("MSIE") != -1){
		techie1.innerHTML='<p id="tabelz">'+utskrift+'</p>';
		techie2.innerHTML='<img border="0" src="images/beamers/'+modString[indx]+'.JPG">';
	}
	if (navigator.appName == "Netscape") {
		document.techns1.document.open();
		document.techns1.document.write('<p id="tabelz">'+utskrift+'</p>');
		document.techns1.document.close();
		document.techns2.document.open();
		document.techns2.document.write('<img border="0" src="images/beamers/'+modString[indx]+'.JPG">');
		document.techns2.document.close();
	}
}
