////////////////////// bricolage 2005 ////////////////////////// globalsvar popupStatus = false;//// functionsfunction setPopupStatus(tempBoolean){	popupStatus = tempBoolean;}function fenster(fenstername,url,weite,hoehe,myTop,myLeft,scroll){ 	if(popupStatus==true){ 		if(popupFenster.closed == false){ 		 	popupFenster.close(); 		} 	} 	setPopupStatus(true); 	popupURL = url; 	// popup size abhaengig von browser (nur bei scrolling=1 relevant) 	tempWidth = weite; 	tempHeight = hoehe; 	// browserabfrage (IE PC oder osX) 	if(navigator.appName == "Microsoft Internet Explorer" && scroll==1){		// PC oder Mac		if (navigator.userAgent.indexOf("Win") != -1){			tempWidth+=18;			}else{			tempWidth-=14;		}	}	if (navigator.userAgent.indexOf("Win") != -1){		// pc		tempHeight += 4;	} 	popupAttr = "toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,copyhistory=1,scrollbars="+scroll+",width="+tempWidth+",height="+tempHeight+",left="+(screen.width/2+myLeft)+",top="+myTop; 	popupFenster = window.open(popupURL,"",popupAttr);  }
