﻿function PrintContent() {
    var DocumentContainer = document.getElementById('ctl00_centralContent_Panel1');
    var WindowObject = window.open('', "", "width=740,height=325,top=200,left=250,toolbars=no,scrollbars=yes,status=no,resizable=no");
    var strHtml = "<html>\n<head>\n <link rel=\"stylesheet\" type=\"text/css\" href=\"/_CSS/sil.css\">\n</head><body><div style=\"testStyle\">\n"
    WindowObject.document.writeln(DocumentContainer.innerHTML);
    DocumentContainer.innerHTML + "\n</div>\n</body>\n</html>";
    WindowObject.document.writeln(strHtml);
    WindowObject.document.close();
    WindowObject.focus();
    WindowObject.print();
    WindowObject.close();
}

function PrintContentEu() {
    var DocumentContainer = document.getElementById('ctl00_euTax');
    var WindowObject = window.open('', "", "width=740,height=325,top=200,left=250,toolbars=no,scrollbars=yes,status=no,resizable=no");
    var strHtml = "<html>\n<head>\n <link rel=\"stylesheet\" type=\"text/css\" href=\"/_CSS/sil.css\">\n</head><body><div style=\"testStyle\">\n"
    WindowObject.document.writeln(DocumentContainer.innerHTML);
    DocumentContainer.innerHTML + "\n</div>\n</body>\n</html>";
    WindowObject.document.writeln(strHtml);
    WindowObject.document.close();
    WindowObject.focus();
    WindowObject.print();
    WindowObject.close();
}
