// JavaScript Document
function popup(URL, height) {
	popupWin = window.open(URL, "popupWin", "width=340, height=" + height + ", top=100, left=100, screenX=100, screenY=100, directories=no, status=no, scrollbars=auto, toolbar=no, resizable=yes");
	popupWin.focus();
}
function popup2(URL, width, height) {
	popupWin = window.open(URL, "popupWin", "width=" + width + ", height=" + height + ", top=100, left=100, screenX=100, screenY=100, directories=no, status=no, scrollbars=auto, toolbar=no, resizable=yes");
	popupWin.focus();
}

function chLang(lang, on) {
	if (!lang) { lang = "de"; }
	if (on) {
		var url = location.pathname;
		var page = url.substr(4);
		var newURL = "http://www.callidus.de/" + lang + "/" + page;
		// alert (page);
	}
	else {
		var newURL = "http://www.callidus.de/" + lang + "/index.html";
	}
	window.location = newURL;
}


