function loc(){
	var url = document.location.href;
	var idx = url.indexOf('.at');
	if(idx >= 0){
		document.location.href = 'http://www.regina-schuhe.com';
	}
}

function start(){
	var url = document.location.href;
	var idx = document.location.href.indexOf('#app');
	if(idx >= 0){
		document.location.href = url.substr(0, idx+1);
	}
}


