function print_view() {
	DELIM = "<!-- print -->";
	INTRO = "<html><head><title>START Zeitarbeit NRW GmbH - Druckansicht</title><link rel=\"stylesheet\" type=\"text/css\" href=\"<~= $CSS_DIR ~>/main.css\"></head><body style=\"margin:5px\">";
	INTRO = INTRO + "<div style=\"width: 825px; color: #000000; font-family: verdana, arial, helvetica; font-size: 9pt; text-decoration: none; background-color:#eeeeee; padding: 5px; border-top: 1px; border-left: 1px;	border-right: 1px; border-bottom: 1px; border-style: solid;	border-color: #000000;\">START Zeitarbeit NRW GmbH";
	INTRO = INTRO + "<br>Druckansicht von " + location.href + "</div><p>";
	EXTRO = "</body></html>";
	src = document.body.innerHTML;
	pos1 = src.indexOf(DELIM) + DELIM.length;
	pos2 = src.indexOf(DELIM, pos1);
	src = src.substring(pos1, pos2);
	popup = window.open('', 'print', 'menubar=yes,toolbar=no,scrollbars=yes,status=no,resizable=no,width=955,height=480');
	popup.document.write(INTRO + src + EXTRO);
	popup.document.close();
	popup.print();
}
