Yes - provided you use a print media stylesheet.
The stylesheet would turn everything off except for the T&C section. This
assumes that you have built your page anticipating such usages.
To see what I mean, go here -
http://www.great-web-sights.com, and do a
print preview. Note that the menu disappears in the preview. To read about
print media stylesheets, go here -
http://www.alistapart.com/articles/goingtoprint/
Finally, programmatic prints will fail on Mac/IE5x. You can get around that
like this -
Put this in the head of the document -
<script type="text/javascript">
function print_page(where){
var is_mac=(navigator.platform.indexOf("ac") != -1);
(document.all && is_mac)?
alert("Select \"Print\" from the menu") : where? where.window.print() :
window.print();
}
function writeOutPrintLink(){
document.getElementById('printLink').innerHTML = '<a
href="javascript
![Stick Out Tongue :p :p](/styles/default/custom/smilies/tongue.gif)
rint_page();">Print this</a>'
}
</script>
Adjust the body tag of the document as follows -
<body ... onload="writeOutPrintLink();"> (where the ellipsis indicates
already existing attributes, if any)
<span id="printLink"></span>
That way, the link only shows up if you have javascript enabled.