// Definition of function to open popup window.

function popup(string)
{
  var html = string + ".html";
  if (arguments.length > 1)
  {
    var title = arguments[1];
  }
  
  window.open(html, title, 
  	    "width=600px,height=600px,resizable=yes,scrollbars=yes", true);
}

