function printPage() {
  if (document.getElementById) {
    document.getElementById("print_container").style.display = "none";
  }
  window.print();
  if (document.getElementById) {
    document.getElementById("print_container").style.display = "block";
  }  
}