﻿function PrintMe() {
    var PrintingWindow = window.open('', 'PrinterFriendly', 'toolbar,width=800,height=600,scrollbars,resizable,menubar');
    PrintingWindow.document.open();
    PrintingWindow.document.write("<html><head>" + document.getElementsByTagName("head")[0].innerHTML + "</head><body><style>body {background-color:white; background-image:none;}</style>" + document.getElementById("main").innerHTML + "</body></html>");
    PrintingWindow.document.close();
}
