// GET-PARAMETER IN ADRESSZEILE VERSTECKEN DURCH JS-WEITERLEITUNG
var loc = "" + location.href;
// ONLINE
if (loc.indexOf("?")!=-1 && loc.indexOf("http://")!=-1) {
	location.replace("http://" + location.host + location.pathname);
}
// OFFLINE
else {
	if (loc.indexOf("?")!=-1 && loc.indexOf("file:")!=-1) {
		location.replace("file:///" + location.host + location.pathname);
	}
}
