<!--
var lt1st=0;
var spec=0;
var moreimg=0;
var pracimg=0;
var videos=0;
var handb=0;
var brochu=0;
var safety=0;
var deliv=0;
var spare=0;
var accesso=0;
var accessoto=0;
var simpro=0;
var cars=0;
var baskop=0;

function ViewIt(id,yesno,perm) {
	if(typeof(id)=='undefined') {
		//alert('ID nicht gefunden!');
	}
	else {
		var what = document.getElementById(id); 
		if(perm==1) { yesno=1; }
		if(perm>1)  { yesno=0; }
		if(yesno == 1) {
			what.style.display = 'block';
		}
		else {
			what.style.display = 'none';
		}
	}
	
}
function ColorIt(id,yesno) {
	if(typeof(id)=='undefined') {
	alert('ID nicht gefunden!');
	}
	else{
		var what = document.getElementById(id); 
		if(yesno == 1) {
			what.style.fontWeight = 'bold';
		}
		else {
			what.style.fontWeight = 'normal';
		}
	}
}
function switchVisible(firstElement, secondElement) {
	document.getElementById(firstElement).style.display = "none";
	document.getElementById(secondElement).style.display = "block";
}

function divHeightCols (arr_werte,id_zusatz) {
	var height_max = 0;
	for(var i = 0; i < arr_werte.length; i++) {
		height_max = Math.max(document.getElementById(id_zusatz+ '-' + arr_werte[i]).offsetHeight, height_max);
	}
	for(var i = 0; i < arr_werte.length; i++) {
		document.getElementById(id_zusatz+ '-' + arr_werte[i]).style.height = height_max + 'px';
	}
}


//-->
