// JavaScript Document
function LangEn(currentURL) {
	aURL = new Array (2);
	aURL = currentURL.split("_de");
	return location.href = aURL[0]+"_en"+aURL[1];
}

function LangDe(currentURL) {
	aURL = new Array (2);
	aURL = currentURL.split("_en");
	return location.href = aURL[0]+"_de"+aURL[1];
}

function openHMTWin() {
	WasIstHMT = window.open("html/hmt_WasIstHMT.html", "WasIstHMT", "resizable=no,directories=no,status=no,menubar=no,location=no,scrollbars=no,width=500,height=350,dependent=yes");
}

function openHMTWinEngl() {
	WasIstHMT = window.open("html/hmt_WasIstHMT_engl.html", "WasIstHMTEngl", "resizable=no,directories=no,status=no,menubar=no,location=no,scrollbars=no,width=500,height=350,dependent=yes");
}