var browserID="other";
function showthis (inout,id){
	if(inout == "0"){
		document.getElementById(id).style.visibility='hidden';			
		document.getElementById(id+"col").style.background='transparent';
		document.getElementById(id+"col").style.backgroundColor='transparent';		
	}
	
	if(inout == "1"){
		document.getElementById(id).style.visibility='visible';		
		if(browserID == "other"){
			document.getElementById(id+"col").style.background='url('+hauptfarbetransparent+')';					
		}else{			
			document.getElementById(id+"col").style.backgroundColor=hauptfarbe;			
		}		
	}
}

