
var NEW_LOC = "golf.shtml"; 
function goNow() { document.location=NEW_LOC; } 
function printPage() { 
  if (confirm("Ok To Print Page?")) {
    window.print();
  }
  // The redirection occurs even if the page is not printed.
  // If you want to do the redirection only if the page is
  // printed, insert the following statement into the above
  // if block denoted by { and }
  //goNow();
} 

