function wechsleTab(tabId) {
	tabToSelect = document.getElementById(tabId+'-tab');
	with (org.ditchnet) {
		jsp.TabUtils.switchTab(tabToSelect);
	}
	scroll(0,0);
};

function wechsleTabPerIndex(tabId) {
	with (org.ditchnet) {
		tabToSelect = jsp.TabUtils.tabs[tabId];
		jsp.TabUtils.switchTab(tabToSelect);
	}
	scroll(0,0);
};

function oeffneFenster(url,name,width,height)
{
	var fenster = window.open(url,name,'left=150,top=150,width='+width+',height='+height+',dependent=yes,menubar=no,toolbar=no,resizable=no,location=no,scrollbars=no,status=no');
	fenster.focus();
};

