function display(id) {
document.getElementById(id).style.visibility = "visible";
}

function remove(id) {
document.getElementById(id).style.visibility = "hidden";
}

function manageDisplayElements() {
	dynamicElement = document.getElementById("teaserbox");
	if (document.body.clientWidth < 1155 || window.innerWidth < 1155) {
		dynamicElement.style.display = "none";
	} else {
		dynamicElement.style.display = "";
	}
}

function doResizeAction() {
	manageDisplayElements();
}

window.onresize=doResizeAction;
window.onload=doResizeAction;
