var gAutoPrint = true; // Tells whether to automatically call the print function function printSpecial() { var html = '\n\n'; html += 'www.dialindia.com\n'; html += ''; html += ''; html += '\n\n

\n'; var printReadyElem = document.getElementById("new_print"); html += printReadyElem.innerHTML; html += '

\n\n'; var printWin = window.open("","print","toolbar=0,location=0,status=0,directories=0,scrollbars=1,width=730,resizable=no"); printWin.document.open(); printWin.document.write(html); printWin.document.close(); if(gAutoPrint) printWin.print(); }