<!--
// Function to Open a second window to display additional information such as image, anecdote, movie etc
 function noteWindow(fileName)
{
// Remove comment from the next line when debugging.
// alert("File name =" + fileName);
window2=window.open(fileName,"Details","width=650,height=500,scrollbars=yes,resizable=yes" );
window2.focus();
}
// end Window function.


// alert message box


function MM_popupMsg(msg) { //v1.0
  alert(msg);
}


//-->