﻿function printElement(elementId, extraCss, width) {
    var element = document.getElementById(elementId);
    var headerElement = document.getElementsByTagName("HEAD")[0];
    if (extraCss == null)
        extraCss = "";

    if (width == null) {
        width = 595;
    }

    var win = window.open("", "", "width=" + width + "px,status=1,resizable=1,toolbar=1,menubar=1");
    win.document.open();
    win.document.write("<html><head>" + headerElement.innerHTML + "<style type=\"text/css\">" + extraCss + "</style></head><body>" + element.innerHTML + "</body></html>");
    win.document.close();
    win.print();
}
