<!--
// Author  : Mark Richardson (www.dark-moon.net) 2009
// This function creates a pop-up window in which to display the contents of the specified file.

function displayInfo(filename)
{
  // create info window and load in actual web page
  info = window.open('','Information','toolbar=0,location=0,menubar=0,scrollbars=0,status=0,resizable=0,width=560,height=300');
  info.location.href = filename;
  info.focus();
}
//-->
