// JavaScript Document

   var displayId = "intro";
   function select(id)
   {
      document.getElementById(displayId).style.display = "none";
      document.getElementById(id).style.display = "block";
      displayId = id;
   }
   

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}