﻿function OpenWindow(Url, Width, Height) {
    var width = Width;
    var height = Height;
    var url = Url;
    var left = parseInt((screen.availWidth / 2) - (width / 2));
    var top = parseInt((screen.availHeight / 2) - (height / 2));
    var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    myWindow = window.open(url, "subWind", windowFeatures);
}

function PrintThisPage() {
    var sOption = "toolbar=yes,location=no,directories=yes,menubar=yes,";
    sOption += "scrollbars=yes,width=750,height=600,left=100,top=25";

    var sWinHTML = document.getElementById('left').innerHTML;

    var winprint = window.open("", "", sOption);
    winprint.document.open();
    winprint.document.write('<html><link href=/App_Themes/Default/style.css rel=Stylesheet><body><center><img src="/images/print_header.jpg" alt="Abuyum Group"></center><div id="divPrinting"');
    winprint.document.write(sWinHTML);
    winprint.document.write('</div></body></html>');
    winprint.document.close();
    winprint.focus();
    winprint.print();
}