//Infoblock Veranstaltungen drucken

function printInfoblock(elem){

//alert($(elem).innerHTML)

	win=window.open('','win','width=560,height=400,scrollbars=yes');
	//window.resizeTo('+picGross.width+','+picGross.height+');
	//win.document.write('<script language="JavaScript" src="fileadmin/templates/scripts/prototype.js" type="text/javascript"></script>');
	//win.document.write('<html><head><title>infoblock</title>');
	//win.document.write('<script language="JavaScript" src="fileadmin/templates/scripts/prototype-161.js" type="text/javascript"></script>');
	//win.document.write('<script language="JavaScript" src="fileadmin/templates/scripts/default.js" type="text/javascript"></script>');
	win.document.write('<link rel="stylesheet" type="text/css" href="/fileadmin/templates/ng/styles/default.css" />');
	win.document.write('<link rel="stylesheet" type="text/css" href="/fileadmin/templates/ng/salzburgarena/styles/salzburgarena.css" />');	
	win.document.write('<style>body{background: #f2f2f2;}.event_teaser {margin-left:0;}.va_nav{display:none;} .va_organiser_more{display:block;} .va_body{border:0px solid #999;}.et_date {border-right: 0; width: 400px;} .event_teaser_single .et_date_time {margin-left:2px}.et_title {float: left; width: 380px;}</style><body onload="window.print();window.focus()">');
	//win.document.write('</head><body onload="window.print();window.focus()">');
	win.document.write($(elem).innerHTML);
	//win.document.write('</body></html>');
	win.document.close();
	//


return false;

	



}