﻿
function PrintMe(obj) {
 
    document.getElementById(obj.id).style.display = 'none';
    var DocumentContainer = document.getElementById('divMain');
 
    var WindowObject = window.open('/Arabic/Pages/Print.htm', "PrintPage", "width=10,height=10,top=0,left=0,toolbars=no,scrollbars=no,status=no,resizable=no");
WindowObject.document.writeln("<link href='/Style%20Library/css/OnlineServicesStylesPrint.css' rel='stylesheet' type='text/css' />");
    
    WindowObject.document.writeln(DocumentContainer.innerHTML);
    WindowObject.document.close();
    WindowObject.focus();
    WindowObject.print();
 document.getElementById(obj.id).style.display = 'block';
   WindowObject.close();
}


