// JavaScript Document

function chooseSite() {
	
var  breite =  window.innerWidth ||  (window.document.documentElement.clientWidth || window.document.body.clientWidth);

	if (breite <= 1000) {
		location.href = "klein/index.html"; 
	}

	else if (breite > 1000 && breite <= 1280) {
		location.href = "mittel/index.html";
	}

	else if (breite > 1280) {
		location.href = "gross/index.html";
	}
	
}