function OpenPrintDialog(PrintBodyElementId, PageTitle) {
  var windowArguments = "status=no,toolbar=no,location=no,resizable=yes,menubar=no,scrollbars=yes"; 

  var win = window.open("about:blank", "_blank", windowArguments);
  var el = document.getElementById(PrintBodyElementId);
  win.document.write("<html><title>" + PageTitle + "</title><body>");
  win.document.write(el.innerHTML);
  win.document.write("<script type='text/javascript'>window.setTimeout('window.print();', 1000);</script>");
  win.document.write("</body></html>");
  win.document.close();
  
  return false;
}
