// ######################################### Start
// ########## DropDownMenue

// Timeout
var timeout;

//showMenu-Function
function showMenu(Menu, doTimeout){

	if (timeout){
		window.clearTimeout(timeout);
	}

	if(document.all){// IE
		document.all[Menu].style.display="";
	}
	
	else if(document.layers){
		document.layers[Menu].visibility="show";
	}//else (Netscape 4)
	
	else if(document.getElementById){ // NS 6
		document.getElementById(Menu).style.display="";
	}
}

//hideMenu-Function
function hideMenu(Menu){

	if(document.all){// IE
		if (timeout){window.clearTimeout(timeout);}
			document.all[Menu].style.display="none";
	}
	
	else if(document.layers){
		document.layers[Menu].visibility="hide";
	}//else (Netscape 4)
	
	else if(document.getElementById){ // NS 6
		document.getElementById(Menu).style.display="none";
	}
}

// ##########
// ####################################### End





// ######################################### Start
// ########## PopUp-Fenster
<!--
function PopupMov(width,height,file) {
var win;
var winl = (screen.width - width) / 2;
var wint = (screen.height - height) / 2;

win = window.open("../_templates/popup_mov.php?PanoNr="+file+"","popup","top="+wint+",left="+winl+",width="+width+",height="+height+",menubar=0,toolbar=0,location=0,scrollbars=0,resizable=0,directories=0,status=1,copyhistory=0");
}
// -->

<!--
function PopupPic(width,height,file) {
var win;
var winl = (screen.width - width) / 2;
var wint = (screen.height - height) / 2;

win = window.open("../_templates/popup_pic.php?PicNr="+file+"","popup","top="+wint+",left="+winl+",width="+width+",height="+height+",menubar=0,toolbar=0,location=0,scrollbars=0,resizable=0,directories=0,status=1,copyhistory=0");
}
// -->

// ##########
// ####################################### End





// ######################################### Start
// ########## Rollover
<!--
if(document.images) // lädt alle RollOver-Bilder vor
	{
	Pic00 = new Image(); Pic00.src = "../_pool-bilder/content/grundriss_over.gif";
	Pic01 = new Image(); Pic01.src = "../_pool-bilder/content/grundriss-bad_over.gif";
	Pic02 = new Image(); Pic02.src = "../_pool-bilder/content/grundriss-bar_over.gif";
	Pic03 = new Image(); Pic03.src = "../_pool-bilder/content/grundriss-kamin_over.gif";
    Pic04 = new Image(); Pic04.src = "../_pool-bilder/content/grundriss-schlaf_over.gif";
	Pic05 = new Image(); Pic05.src = "../_pool-bilder/content/grundriss_out.gif";
	}

function bild(Imagemap_Name,OverBild) // erzeugt den MouseOver-Effekt auf dem Bild
	{
	if(!document.images) return;
	eval('document.images[Imagemap_Name].src = '+OverBild+'.src');
	}
// -->

// ##########
// ####################################### End