function what_new() {
	document.write("<p><b>Oct/2004</b>: Wenli just won the Fourth Prize (First Prize vacant) as well " +
                       "as the Best Performance of a Major Work by a 20th or 21st Century American " +
                       "Composer in the twenty-seventh Frinna Awerbuch International Competition of " +
                       "the New York Congress of Piano Teachers. She is going to perform in Weill " +
                       "Recital Hall at Carnegie Hall on Saturday, November 6, 2004 at 1:30 pm. " +
                       "Works include Chopin Etude OP. 25, No. 6, John Corigliano's \"Etude Fantasy,\" " +
                       "and Mendelssohn/Rachmaninoff: Scherzo from \"A midsummer Night's Dream.\"</p>");
}

function displayNote(evt, noteID) {
	var noteDiv = document.getElementById(noteID);
	if (document.all) {
		noteDiv.style.left = evt.x+document.body.scrollLeft;
		noteDiv.style.top = evt.y+document.body.scrollTop;
	} else {
		noteDiv.style.left = evt.pageX;
		noteDiv.style.top = evt.pageY;
	}
	noteDiv.style.display = "";
}

function hideNote(noteID) {
	var noteDiv = document.getElementById(noteID);
	noteDiv.style.display = "none";
}
