﻿var gAutoPrint = true; // Call print function
function printxt()
{
 if (document.getElementById != null)
 {
  var html = '<HTML dir="rtl">\n<HEAD>';
  

  if (document.getElementsByTagName != null)
  {
   var headTags = document.getElementsByTagName("head");
   if (headTags.length > 0)
    html += headTags[0].innerHTML;
  }
  html += '\n<link rel="stylesheet" rev=stylesheet href="/Style%20Library/ar-SA/Print.css" type="text/css">\n';

  html += '\n</HE' + 'AD>\n<BODY>\n';
  
  html += '\n<table border="0" class="PrintWidth" align="center"><tr><td>\n';
  html += '\n<div class="PrintLogo"><img src="/SiteCollectionImages/ar-sa/BnrLogo.jpg"></div>\n';

  var printReadyElem = document.getElementById("printReady");
  
  if (printReadyElem != null)
  {
    html += printReadyElem.innerHTML;
  }
  else
  {
   alert("There is nothing to Print");
   return;
  }
  html += '\n</td></tr></table>\n';
  html += '\n<div class="PrintCopyR">المملكه العربيه السعوديه - الحرس الوطني السعودي © 2008</div>\n';

  html += '\n</BO' + 'DY>\n</HT' + 'ML>';
  
  var printWin = window.open("","printxt");
  printWin.document.open();
  printWin.document.write(html);
  printWin.document.close();
  if (gAutoPrint)
   printWin.print();
 }
 else
 {
  alert("Your Browser Doesn't Support This Feature");
 }
}

