colors = new Array();
/* Offline 
colors[0] = "grey";
colors[1] = "grey";
colors[2] = "yellow";
colors[14] = "blue";
colors[22] = "red";
colors[25] = "brown";
*/

/* Online */
colors[0] = "grey";
colors[1] = "grey";
colors[2] = "yellow";
colors[208] = "blue";
colors[14] = "blue";
colors[22] = "red";
colors[233] = "brown";


function init() {	
	//alert(activeid);					
	document.getElementById('bgleft').className = colors[activeid] + "-bgnav";
	document.getElementById('bgcontent').className = colors[activeid] + "-bgcontent";	
	var setNr = Math.floor((Math.random()*10)/2);	
	document.getElementById('imgframe').className = colors[activeid] + "-img" + setNr;
}	

function doSearch() {	
	myKeywords = document.forms["searchForm"].elements["q"].value;
	if (myKeywords.length<3 || myKeywords=='Suche') {
		alert("Bitte geben Sie einen (genaueren) Suchbegriff ein.");
		return false;
	}
	document.forms["searchForm"].elements["q"].value = myKeywords;	
	document.forms["searchForm"].elements['keyword'].value = document.forms["searchForm"].elements["q"].value;	
	document.forms["searchForm"].action="dyn_output.html";	
}

function openPicWin(pFileName,pWinName,pWidth,pHeight) {
	var isNS = (document.layers) ? true : false;
	
	if (isNS) pHeight = pHeight + 19;
		eval("allSettings = 'width="+pWidth+",height="+pHeight+",menubar=yes,scrollbars=yes,status=yes,resizable=yes'");
		w=window.open(pFileName,pWinName,allSettings);
		w.window.focus();
}	
