function hideKeinJavaScript() {
	document.getElementById("keinJavaScript").style.display = "none";
}

function newPopUp(url, titel, width, height, center, menubar, toolbar, dependent) {
	var options = 'width='+width+',height='+height +',menubar='+menubar+',toolbar='+toolbar+',dependent='+dependent;
	popup = window.open(url,titel,options);
	
	popup.resizeTo(width,height);
	
	if (center == '1'){
		var posX = document.documentElement.clientWidth/2-width/2;
		var posY = document.documentElement.clientHeight/2-height/2;
		popup.moveTo(posX,posY);
		popup.focus();
	}
}
