/* nimmt die Url entgegen und leitet den Browser weiter */
function goToSite(url) {

	if(url.indexOf('http://')== -1 &&  url.indexOf('https://')== -1) {
		
		t = location.protocol + '//' + location.hostname + '/';
		
		if(location.href.indexOf('/hzbtypo/') > 0) {
			t = t + 'hzbtypo/';
		}
				
		t = t + url;
		
	} else {
		
		t = url;
		
	}

	location.href = t;

}