/*
function showHideTeaserBlock(id,sumLayer) {
	for(i = 0; i < sumLayer; i++){
		document.getElementById("teaserBlock"+i).style.display = 'none';
		document.getElementById("link"+i).style.color = '#8a8c8e';
		document.getElementById("link"+i).style.fontStyle = 'normal';
	}
	document.getElementById("teaserBlock"+id).style.display = 'block';
	document.getElementById("link"+id).style.color = '#000000';
	document.getElementById("link"+id).style.fontStyle = 'italic';
}
*/

function popup (url,windowName) {
 fenster = window.open(url, windowName, "width=600,height=600,status=no,scrollbars=yes,resizable=no,menubar=0,location=0,toolbar=0");
 fenster.focus();
}
