// JavaScript Document

function canPrint()
{
  if (window.print) return true;
  return false;
}

function printPage() {
  if (canPrint())
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature.");
}

