function printPage(w, h, scroll) {			
				var winl = (screen.width - w) / 2;
				var wint = (screen.height - h) / 2;
				var myname = "printvenster"
				
				winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
				text =  "<html>\n<head>\n<link href=\"../style/print.css\" rel=\"stylesheet\" type=\"text/css\">\n<title>";
				text +=  document.title + "</title>\n</head>\n<body onload=\"window.print();\">\n";			
				text += htmlContent.innerHTML				
				text += "\n</body>\n</html>\n";
				
				win = window.open('', myname, winprops)
				win.document.write("<div class=\"printbar\"><input type=\"button\" value=\"print\" onclick=\"javascript:history.go(0);\"></div>" + text);
				if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
			}
