<!--
// 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=700,scrollbars=yes,resizable=yes" );
window2.focus();
}



//Function for Status-bar message
function MM_displayStatusMsg(msgStr) { 
  status=msgStr;
  document.MM_returnValue = true;
}


//-->
