function open_window(link,w,h) //opens new window
{
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=no,scrollbars=no";
	newWin = window.open(link,'newWin',win);
	newWin.focus();
}

function display(it) {
	var it = document.getElementById(it);
	it.style.display = (it.style.display=='block')?'none':'block';
}
function hide(it1) { 
	var it1 = document.getElementById(it1);
	it1.style.display = 'none';
}
function show(it2) { 
	var it2 = document.getElementById(it2);
	it2.style.display = 'block';
}
function none(){}
function active_thumb(nr) { 
	var thumb = 'thumb_'+nr;
	var name = 'name_'+nr;
	var thumb_this = document.getElementById(thumb);
	var name_this = document.getElementById(name);
	
	thumb_this.style.border = '1px solid #FFFFFF';
	thumb_this.style.background = '#990000';
	
	name_this.style.background = 'url(imgs/rechts_menu_select.gif) repeat-y';
	
	{text}
	
}