﻿function PrintThisPage() {
    var sOption = "toolbar=yes,location=no,directories=yes,menubar=yes,";
    sOption += "scrollbars=yes,width=800,height=600,left=100,top=25";

    var sWinHTML = document.getElementById('content').innerHTML;

    var winprint = window.open("", "", sOption);
    winprint.document.open();
    winprint.document.write('<html><LINK href= rel=Stylesheet>');
    //winprint.document.write('<link href=/WebResource.axd?d=E3crmjSZCrO5qVzhnkYI4PWtu9htJzVLtgz0tfcwncdehnssGoTRgJMgx1D3gEZs0&amp;t=633438056340000000 type=text/css rel=stylesheet title=Telerik stylesheet /><link href=/WebResource.axd?d=E3crmjSZCrO5qVzhnkYI4PWtu9htJzVLtgz0tfcwnccfpBUzW5r5ohiiIc6SAx6J-u36qcTYJCluern7ei1QBzGNzH_dKiSDJeH2CcqITs81&amp;t=633438056340000000 type=text/css rel=stylesheet title=Telerik stylesheet /><link href=/WebResource.axd?d=E3crmjSZCrO5qVzhnkYI4PWtu9htJzVLtgz0tfcwnccLBA56agnxj06y5IZPc1qUZD4vA9gAlNyUsrPcA1npkA2&amp;t=633438056340000000 type=text/css rel=stylesheet title=Telerik stylesheet /><link href=/WebResource.axd?d=E3crmjSZCrO5qVzhnkYI4PWtu9htJzVLtgz0tfcwnceBPKhufZVzdeX7tfg0-pkOmm7x1XlBEHrbfkADlUWdCG4xdpqB2X-GGAT8tnxjqD41&amp;t=633438056340000000 type=text/css rel=stylesheet title=Telerik stylesheet /><link href=/WebResource.axd?d=E3crmjSZCrO5qVzhnkYI4PWtu9htJzVLtgz0tfcwncfLeVbGU6NcIbKNr3E-UGlzpmP4eCeAZn6ZE_K8Kj2bXQ2&amp;t=633438056340000000 type=text/css rel=stylesheet title=Telerik stylesheet />');
    winprint.document.write('<body>');
    winprint.document.write(sWinHTML);
    winprint.document.write('</body></html>');
    winprint.document.close();
    winprint.focus();
}

