function vino() {
	for (var n = 0; n < arguments.length; n++) {
		var a = arguments[n];
		var mode = a.substr(0, 1);
		if (mode != "+" && mode != "-") { //expliziter Zustand?
			var s = document.getElementById(a).style;
			s.display == 'none' ? s.display = 'block' : s.display = 'none';
		} else {
			o = a.substr(1, a.length);
			s = document.getElementById(o).style;
			mode == "-" ? s.display = 'none' : s.display = 'block';
		}
	}
}


function bildergalerie(link) 
{
      wincom = window.open(link,"fenster","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=800,height=600");
      wincom.focus();
}

 
 
