var printButtonURL = "http://www.axiomfiles.com/Files/332403/edit-print.png";
var autoPrint = true;
var popupWidth = 500;
var popupHeight = 500;
$(document).ready(function(){
 var tmp = '<img class="tooltip" style="cursor:pointer;" src="' + printButtonURL +
  '" alt="Print" title="Print this message" onclick="printWin($(this))">';
 $('.MessageToolsCell1').find('div:first').append(tmp);
})
function printWin(el){
 var msg = el.closest('table');
 var msgContent = msg.find('.MessageBodyCell1').html();
 var pgtitle = msg.parent().find('.MessageSubjectCell1').text();
 pgtitle = pgtitle.replace(/(\s\s)/g,'').replace(/(\t)/g,'');
 var tmp = '<html><head><title>Posted ' + pgtitle + '</title><style media=print>.h{display:none;}</style></head><body><div class=h>';
 tmp += '<input onclick=window.print() type=button value=Print><input onclick=window.close() type=button value=Close>';
 tmp += '<hr></div>' + msgContent + '</body></html>';
 var temp = "menubar=yes,location=no,toolbar=0,status=0,scrollbars=1,width=" + popupWidth + ",height=" + popupHeight;
 var w = window.open ('','Print',temp);
 w.document.write(tmp);
 if (autoPrint) w.print();
}