
	// https-redirect: Ist in die Iframe-Template(fürs Shop) eingebettet
	if(window.location.protocol=="http:"){
		//
		var hostname = window.location.hostname;
		var pathname = window.location.pathname;
		var search = window.location.search;
		var url_https = "https://"+hostname + pathname + search;
		
		//alert(url_https);		
		window.location.href = url_https;
	}
	