//***************************************
//* JavaScript WEB PAGE UTILITIES
//* Copyright(C) 1997,1998 Spencer Leibow
//* All Rights Reserved.
//***************************************

// Show when the document was last modified. But not if it's a bogus date.
function LastUpdate(prestr)
{
  lastmod = new Date;

  lastmod.setTime(Date.parse(document.lastModified));
  if (98 <= lastmod.getYear()) {
    document.write(prestr);
    document.write(document.lastModified);
  }
}

// STATUS BAR FUNCTIONS

function StatusBarClear() {
  self.status = '';
  return true;
}

function StatusBarPut(msg) {
  self.status = msg;
  return true;
}

// Spence's Musical Realm -- Play a MIDI file

function PlayMIDI(smfname) {
  url = "../midi/" + smfname + ".mid";

  win = window.open(url, "smr_midi");
  return false;
}


