/* ### JavaScripts Simmerding ### */


/* machsAuf zum Bildertausch */
var popupWindow;
function machsAuf( url, w, h ) {
	if ( popupWindow) {
		if (popupWindow.closed == true) {
			popupWindow = window.open( url, "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width="+w+",height="+h);
			if (window.focus) popupWindow.focus();
		} else {
			popupWindow.location = url;
			if (window.focus) popupWindow.focus();
		}
	} else {
		popupWindow = window.open( url, "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width="+w+",height="+h);
		if (window.focus) popupWindow.focus();
	}
}

/*** Navigation aktivieren  ***/
var subActive = "";

function ClassChange(obj) {
var el = document.getElementById(obj);
if (subActive != ""){
	subActive.className = "";
   }
var ar = document.getElementById("navbar").getElementsByTagName("a");
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="active") 
				ar[i].className = "";
			}
			el.className = "active";
			subActive = el;
};
