There is also an other way to print a webpage, ant that is CSS
CSS is used to make your layout for your site, but it can also be used to simplify the webpage when the user hits the print button.
Very easy, just have two kinds of CSS in your <head>
Code:
<link href="webpages.css" rel="stylesheet" type="text/css" />
<link href="print.css" rel="stylesheet" type="text/css" media="print">
In your print.css you will have to use the display-property: "none" alot.
Here some further information:
http://www.yourhtmlsource.com/styles...ediatypes.html
http://webdesign.about.com/cs/css/a/aa042103a.htm
Good luck