<!--

/*
kontakt_on = new Image();
kontakt_off = new Image();
kontakt_on.src = "img/navi_buero_on.gif";
kontakt_off.src = "img/navi_buero_off.gif";

function img_off(imgName) {
	document[imgName].src =("img/navi_" + imgName + "_off.gif");
}
function img_on(imgName) {
	document[imgName].src =("img/navi_" + imgName + "_on.gif");
}
*/

function show(me) {
 if(document.getElementById)
   document.getElementById(me).style.visibility = "visible";
}
function hide(me) {
 if(document.getElementById)
   document.getElementById(me).style.visibility = "hidden";
}



var newWindow = null;
function makeNewWindow(fname,w,h) {
	newWindow = window.open(fname,"","scrollbars=no,resizable=no,width=" + w + ",height=" + h )
	newWindow.moveTo(50,10);
	newWindow.focus();
}
function makeNewWindowScroll(fname,w,h) {
	newWindow = window.open(fname,"","scrollbars=yes,resizable=yes,width=" + w + ",height=" + h )
	newWindow.moveTo(50,10);
	newWindow.focus();
}

	
// -->