﻿function printDiv (id) {

    // open popup in center of browser
         var w = 800, h = 600;
       
        if (document.all) {
           /* the following is only available after onLoad */
           w = document.body.clientWidth;
           h = document.body.clientHeight;
        }
        else if (document.layers) {
           w = window.innerWidth;
           h = window.innerHeight;
        }
        else
        {
           w = document.body.clientWidth;
           h = document.body.clientHeight;
        }

        var popW = 750, popH = 700;

        var leftPos = (w-popW)/2;
        var topPos = (h-popH)/2;
        topPos = topPos - 200;
         
    var popupproperty = "status=yes,toolbar=no,menubar=no,location=center,scrollbars=yes," + "width=" + popW + ",height="+popH+",top="+topPos+",left="+leftPos;
    var printcontent = document.getElementById('content').innerHTML;
    var printwindow = window.open("pressprint.html",null,popupproperty);

}

function printDiv1 (id) {

   window.print(); 

}



