Try this !!!
<SCRIPT>
<!--
// Hide tags with id="noprint"
//when printing
function printSetup()
{
var a = document.all.item("noprint");
if (a!=null) {
if (a.length!=null) {
//multiple tags found
for (i=0; i< a.length; i++) {
a(i).style.display = window.event.type == "beforeprint" ? "none" :"inline";
}
} else
//only one tag
a.style.display = window.event.type == "beforeprint" ? "none" :"inline";
}
}
//-->
</SCRIPT>
<BODY onbeforeprint="printSetup()" onafterprint="printSetup()">
<P>You can see me and print me <BR>
<!-- set the tag id to "noprint" for elements you want displayed, but not printed -->
<H2 id="noprint">You can see me, but not print</H2>
<SPAN id="noprint">
<BR><HR>Works with SPAN and other tags
</SPAN>
</BODY>
Shall i be worship for what i am ?
Bookmarks