function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature.");
    alert(message);
}
function historygoback() {
  if (history.back)
    history.back(-1)
  else
    alert("Sorry, your browser doesn't support this feature.");
    
}