	// Popup-Fenster
	
	function OpenForum(url) {
		props = "width=640,height=560,toolbar=1,location=0,status=0,menubar=0,scrollbars=1,resizable=1";
		forumfenster=window.open(url,"Forum",props); 
		forumfenster.focus();
	}
	
	function OpenFotostrecke(url, breite, hoehe) {
		props = "width=" + breite + ",height=" + hoehe + ",toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=1";
		awin=window.open(url,"Fotostrecke",props); 
		awin.focus();
	}

	function OpenHerstellerFenster(link) {
		hersteller = window.open(link,"Hersteller","width=220,height=200,resizable=1");
		hersteller.focus();
	}
	
	function OpenHaeuserSpecial(url) { 
		awin=window.open(url,"haeuserspecial","width=700,height=560,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0");
		awin.focus();
	}

	function OpenHaeuserSpecial2(url) { 
		awin=window.open(url,"haeuserspecial2","width=680,height=550,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0");
		awin.focus();
	}

	function OpenSpecialSchwoerer(url) { 
		awin=window.open(url,"SchwoererHaus","width=710,height=585,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=0");
		awin.focus();
	}

	function OpenWindow(url) { 
		awin=window.open(url,"swin","width=480,height=400,toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1");
		awin.focus();
	}

	function OpenWindowCustom(url, breite, hoehe) {
		props = "width=" + breite + ",height=" + hoehe + ",toolbar=1,location=0,status=0,menubar=0,scrollbars=1,resizable=1";
		awin=window.open(url,"lah2",props);
		awin.focus();
	}
	
	function OpenWindowCustomResize(url, breite, hoehe) {
		props = "width=" + breite + ",height=" + hoehe + ",toolbar=1,location=0,status=0,menubar=0,scrollbars=1,resizable=1";
		awin=window.open(url,"lah1",props); 
		awin.focus();
	}

	function OpenWindowCustomName(url, name, breite, hoehe) {
		props = "width=" + breite + ",height=" + hoehe + ",toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1";
		awin=window.open(url,name,props);
		awin.focus();
	}

	function OpenWindowCustomResizeName(url, name, breite, hoehe) {
		props = "width=" + breite + ",height=" + hoehe + ",toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1";
		awin=window.open(url,name,props); 
		awin.focus();
	}
	
	// Dropdown-Navigation
	
	function GoToSeite(s) {
		var d = s.options[s.selectedIndex].value;
		window.top.location.href = d;
		s.selectedIndex=0;
	}

	function GoToFotostrecke(s, breite, hoehe) {
		var d = s.options[s.selectedIndex].value;
		OpenFotostrecke(d, breite, hoehe);
		s.selectedIndex=0;
	}
	
	// Mouseover-Bilder
	
	function img_act(imgName) {
		imgOn = eval(imgName + "on.src");
		document [imgName].src = imgOn;
	}
	
	function img_inact(imgName) {
		imgOff = eval(imgName + "off.src");
		document [imgName].src = imgOff;
	}



