
$(document).ready(function() {
	$('#seite-drucken').click( function() {
	   var $url = window.document.URL;
           var $newWin = window.open($url,'MyNewWindow','width=1000,height=900,left=200,top=100,resizable=yes,toolbar=yes,scrollbars=yes,menubar=yes');
	   
	   var $content = $('#contentbereich').clone();
	/*
           $content.find("a").each(function() {
	        $(this).attr("href", "#");
	   });

	   $content.find("img").each(function() {
		return "<button style='border: 1px solid red' class='close' />"
 	    });
	*/

	   var $inhalte = $content.html();
	   

	   var $newHtml = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n<html><head><title>Druckversion</title>\n';
	   $newHtml += '<link title="Standard" media="screen, projection" href="/portal/CSS/print.css" type="text/css" rel="stylesheet" />\n';
 	   $newHtml += '<link title="Standard" media="print" href="/portal/CSS/print.css" type="text/css" rel="stylesheet" />\n';
	   $newHtml += '</head><body style="padding: 10px;"><div id="contentbereich">' + $inhalte + '</div></body></html>';

	    $newWin.document.open();
            $newWin.document.write($newHtml);
            $newWin.document.close();
            $newWin.print();
            return false;

       });
	
});

