var _h1 = "<html><head>";
var _h1inner = "<link rel='stylesheet' type='text/css' href='css/Global.css' />"
var _h2 = "</head>";
var _b1 = "<body>";
var _b2 = "</body></html>";

var win=null;
function printIt() {
  win = window.open();
  self.focus();
  win.document.open();
  win.document.write(_h1+_h1inner+_h2+_b1+EBI("navigationBar").innerHTML +_b2);
  win.document.close();
  win.print();
  win.close();
}
