function printPage(divId)
{ 
 // w=window.open('','','scrollbars=1,resizable,width=100,height=100,top=0,left=0')
 // w.document.write('<html><body onLoad="window.print();window.close();"><table>'+document.getElementById(divId).innerHTML+'</table></body></html>')
 // w.document.close();
 var strHTML = document.getElementById(divId).innerHTML;

strHTML = strHTML.replace(/<\s*a[^>]*>/gi,"<b>");  //remove all link tags
strHTML = strHTML.replace(/<\s*\/a[^>]*>/gi,"</b>");  //remove all link tags
strHTML = strHTML.replace(/BACKGROUND:/gi,"");    //remove all background images


w=window.open('print.htm','','scrollbars=1,resizable,toolbar=1,menubar=1,top=0,left=0')
w.document.write('<html><head></head><body onLoad="window.print();setTimeout(window.close, 0)" style="background: white">'+strHTML+'</body></html>')
w.document.close();
 
}