A possible workaround for the page title:
- Provide a print button,
- catch the onclick event,
- use javascript to change the page title,
- then execute the print command via javascript as well.
document.title = "Print page title"; window.print();
This should work in every browser.