
function popUp(file,width,height) {
	
	height = parseInt(height)+20;
	width = parseInt(width)+20;
	
	popup = window.open('/_rtf-donauhof/'+file,'popup','width='+width+',height='+height);
}

function setStatus(str) {
	window.status = str;
}

