﻿function printPage()
{
    var row1 = document.getElementById("col1");
    row1.style.display = 'none';
    var row2 = document.getElementById("col2");
    row2.style.display = 'none';
    var row3 = document.getElementById("col3");
    row3.style.display = 'none';
               
    window.print();
}

 function printDiv() {
     var divToPrint1 = document.getElementById('foo');
     //var divToPrint2 = document.getElementById('footerright');
     //var newWin = window.open('', 'Print-Window', 'width=500,height=350');
     var newWin = window.open(''); 
     newWin.document.open();
     newWin.document.write('<html><body onload="window.print()">' + divToPrint1.innerHTML + '</body></html>');
     newWin.document.close();
     setTimeout(function () { newWin.close(); }, 500);
 }

