	/*function printcontent(printlayer)
	{
		var inhtml; 
		if (document.getElementById(printlayer) != null)
		{
			inhtml = document.getElementById(printlayer).innerHTML;
			window.frames.wwprintframe.document.open();
			window.frames.wwprintframe.document.write('<html><head><title>Winkelwaar.nl</title>');
			window.frames.wwprintframe.document.write('<link href="style/style.css" rel="stylesheet" type="text/css">');
			window.frames.wwprintframe.document.write('<style type="text/css">.printheader { visibility: visible; }');
			window.frames.wwprintframe.document.write('.printhidden { visibility: hidden; } </style>');
			window.frames.wwprintframe.document.write('</head><body onLoad="top.frames.wwprintframe.focus();top.frames.wwprintframe.print();">');
			window.frames.wwprintframe.document.write(inhtml);
			window.frames.wwprintframe.document.write('</body></html>');
			window.frames.wwprintframe.document.close();
		}
	}*/
	
	function printcontent(printlayer)
	{
		var inhtml; 
		var inhtml2; 
		var printlayer;
		if (document.getElementById('printheader') != null)
			{	inhtml2 = document.getElementById('printheader').innerHTML;	}

		if (document.getElementById(printlayer) != null)
		{
			inhtml = document.getElementById(printlayer).innerHTML;
			window.frames.wwprintframe.document.open();
			window.frames.wwprintframe.document.write('<html><head><title>Winkelwaar.nl</title>');
			window.frames.wwprintframe.document.write('<link href="style/style.css" rel="stylesheet" type="text/css">');
			window.frames.wwprintframe.document.write('<link href="style/prijsvergelijk.css" rel="stylesheet" type="text/css">');
			window.frames.wwprintframe.document.write('<style type="text/css">');
			window.frames.wwprintframe.document.write('.printheader { visibility: visible; position: relative;}');
			window.frames.wwprintframe.document.write('.printhidden { visibility: hidden; }');
			window.frames.wwprintframe.document.write(' body { background-image: none; }');
			window.frames.wwprintframe.document.write('</style>');
			window.frames.wwprintframe.document.write('</head><body onLoad="top.frames.wwprintframe.focus();top.frames.wwprintframe.print();">');
			window.frames.wwprintframe.document.write('<div id="printheader" class="printheader">'+inhtml2+'</div>');
			window.frames.wwprintframe.document.write(inhtml);
			if (document.getElementById('boodschappenlijst_table') != null)
				{	window.frames.wwprintframe.document.write('<script language="javascript">document.getElementById("boodschappenlijst_table").width = "600";</script>'); }
			window.frames.wwprintframe.document.write('</body></html>');
			window.frames.wwprintframe.document.close();
		}
	}