function printpage()
{
var ih = document.getElementById("editable").innerHTML;
var newwindow = window.open("", "newwin3", "toolbar=no,scrollbars=yes, width=680px, height=500px")
newwindow.moveTo(40,80);
newwindow.document.write("<html>");
newwindow.document.write("<head><title>Print</title><link rel='stylesheet' href='jastyle.css' type='text/css'></head>");
newwindow.document.write("<body class='printbodystyle' onload='javaScript:window.print();'>");
newwindow.document.write("<input type='button' class='style50' name='printbtn' id='printbtn' value='Print' onclick='JavaScript:window.print();'><br><br>")
newwindow.document.write("<div class='printstyle1'>");
newwindow.document.write("<img src='images/japrintlogo.gif' alt=''><br>");
newwindow.document.write("<center>------------------------------------------------------------------------------------</center>");
newwindow.document.write(ih);
newwindow.document.write("</div>");
newwindow.document.write("</body>");
newwindow.document.write("</html>");
newwindow.location.reload();
}
