function printFriendly(tagID) { // get print content var sSrc = document.getElementById(tagID).innerHTML; var html = ''; html += ''; html += '
'; html += sSrc; html += ''; var oPrint = window.open("about:blank",null,"width=5,height=5"); oPrint.document.open(); oPrint.document.write(html); oPrint.document.close(); oPrint.print(); oPrint.setTimeout("close()", "2000"); return; }