function logoClicked() {	Address = "";	sub = window.location.pathname.substr(1, 2);	if (sub == '') {		Address = 'http://www.georg-martin.de';	}	if (sub == 'de') {		Address = 'http://www.georg-martin.de';	}	if (sub == "en") {		Address = 'http://www.georg-martin.de/en/home.html';	}	if (sub == "it") {		Address = 'http://www.georg-martin.de/it/home.html';	}	if (sub == "fr") {		Address = 'http://www.georg-martin.de/fr/home.html';	}		if (Address == "") {		Address = 'http://www.georg-martin.de';	}	this.location.href=Address;}
