Are you talking about bring up the printer dialog so that the user can print a document?
If this is what you want to do you will need some javascript. Something like:
<script>
<!--
function
function printpage() {
if (window.print) {
window.print();
} else {
alert('To print this page, select Print from the file menu.');
}
}
// -->
</script>
Then a link to the document:
<a href="#" onClick="printpage(); return false">Print Me!</a>
Hope this helps.
Luis