// Standard-Javascript für Website

// Resize Page
function reSize() {

	if(window.innerHeight) { // Wenn Firefox
	  winHeight = window.innerHeight;
	  OutContent = 425;
	  document.getElementById('BoxContent').style.minHeight = (winHeight - OutContent) + 'px';
	}
	

}
window.onresize = reSize;

