/**
 * @author Edgar Bültemeyer fairea gmbh
 */

function printPage(){
	if(!confirm("Seite wird gedruckt!")) exit();
	//bodyobj=document.getElementById("main_text");
	oldheight=$('main_text').getStyle('height');
	oldheight2=$('text').getStyle('height');
	//obj.style.height;
	//obj.style.height="auto";
	$('main_text').setStyle('height','');
	$('text').setStyle('height','');
	$('footer').setStyle('visibility','hidden');
	document.body.setStyle('overflow','auto');
	//setTimeout("window.print();", 50);
	window.print();
	//confirm('ok');
	setTimeout("postPrint(oldheight,oldheight2);", 500);
}

function postPrint(oldheight,oldheight2){
	$('footer').setStyle('visibility','visible');
	//$('footer').setStyle('visibility','visible');
	document.body.setStyle('overflow','hidden');
	$('main_text').setStyle('height',oldheight);
	
}

