﻿function PrintPage(){
    var a = window.open('','','width=700,height=500,scrollbars=1');
    a.document.open("text/html");
    a.document.write(document.getElementById('ContentPage').innerHTML);
    a.document.close();
    a.print();

}
