window.onload =	function () {
									var footer = document.getElementById('wrapper_footer');
									var paragraph = footer.getElementsByTagName('p');

									var anchorPrint = document.createElement('a');
									anchorPrint.setAttribute('href', 'javascript: window.print();');

									var printTitle = 'Druckversion';

									var query = location.search;
									if (query) {
										regs = query.match(/L=([0-9]+)/);
										if (regs) {
											if (regs[1] == 1) {
												printTitle = 'Print version';
											}
										}
									}

									anchorPrint.setAttribute('title', printTitle);
									anchorPrint.appendChild(document.createTextNode(printTitle));

									paragraph[0].appendChild(document.createTextNode(' | '));
									paragraph[0].appendChild(anchorPrint);
								}