function init() {
	var ibody = document.getElementById("bodyHeight");
	if (ibody) {
		if (ibody.offsetHeight <= 580) {
			ibody.style.height = 580 + "px";
		}
	}
}
 

function resize_iframe(ht) {
	var iframe = document.getElementById("iframeBody");
	if (iframe) {
		var height = document.getElementById("iframeBody");
		if (ht <= 580) {
			height.style.height = 580 + "px";
		} else {
			height.style.height = ht + 0 + "px";
		}
	}
}

function get_scroll_ht() {
	var ht =  document.getElementById("bodyHeight").scrollHeight;
	parent.resize_iframe(ht);
}

function stoerer() {
	$("#stoerer").dialog({
		bgiframe: false,
		autoOpen: true,
		height: 600,
		width: 600,
		title: '',
		modal: true,
		resizable: true,
		buttons: {
			"Cool": function() {
			  $(this).dialog('close');
			}
		},
		dialogClass: 'adjust'
	});
}
