function changeLanguage (langId) {
	actUrl = document.location.href;
    document.location.href = getUrlFullFilePath(actUrl) + createUrlParameters(setParamValue(getUrlParamArray(actUrl),"language",langId));
}

function make(what) {
	actUrl = document.location.href;
    document.location.href = getUrlFullFilePath(actUrl) + createUrlParameters(setParamValue(getUrlParamArray(actUrl),"make",what));
}

// menu functions //
function doHighLite(anchorID){
	if(anchorID == null) return;
	document.getElementById(anchorID).style.color="#666699";
	document.getElementById(anchorID).style.fontSize="11px";
}


function doHighLiteSubmenu (anchorID){
	if(anchorID == null) return;
	document.getElementById(anchorID).style.color="#666699";;
}

function openImpressum(){
	var spec = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width=780,height=660,left=100, top=100,screenX=100,screenY=100";
	var zoomWin = window.open("/content/impressum.asp","Impressum",spec)
	zoomWin.focus();
}

var picNumber = 1;
function openZoomPic(filePath){
	var spec = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width=420,height=595,left=100,top=100,screenX=100,screenY=100";
	var zoomWin = window.open(filePath,"openZoomPic"+picNumber,spec)
	zoomWin.focus();
	picNumber++;
}

function openZoomPicQuer(filePath){
	var spec = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width=620,height=448,left=100,top=100,screenX=100,screenY=100";
	var zoomWin = window.open(filePath,"openZoomPic"+picNumber,spec)
	zoomWin.focus();
	picNumber++;
}

function hoverOn(anchorID){
	if(anchorID != activeNaviID) document.getElementById(anchorID).style.fontWeight="bold";
}

function hoverOff(anchorID){
	if(anchorID != activeNaviID) document.getElementById(anchorID).style.fontWeight="normal";
}

function openImg(img,imgPath){
	popUpWin = open('/content/openImg.asp?img='+img+'&imgPath='+imgPath,'openImg','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width=300,height=300,left=100, top=100,screenX=100,screenY=100');
	popUpWin.focus();
}