function frameMe(framepage, framename){
  var frameset = framepage; //name of the frameset page
  var frame = framename; //name of the frame to load document into
  page = new String(self.document.location);
  var pos = page.lastIndexOf("/") + 1;
  var pos2 = page.lastIndexOf("html") + 4;
  if(pos2 != -1) {
    var file = page.substr(pos, pos2 - pos);
  }
  else {  
    var file = page.substr(pos);
  }
  if(window.name != frame){
  var s = frameset + "?" + file + "&" + frame;
  top.location.replace(s);
 }
 return;
}

function writemenu(home, play, major, framename)
{
   if(home)
   {
      document.write('<p class="textmenu">');
      document.write('<a href="streamframe.html" target="_top">Streaming<\/a>&nbsp;&nbsp;');
      document.write('<a href="pixframe.html" target="_top">Photos<\/a>&nbsp;&nbsp;');
      document.write('<a href="missionframe.html" target="_top">Mission<\/a>&nbsp;&nbsp;');
      document.write('<a href="aboutframe.html" target="_top">About Us<\/a>&nbsp;&nbsp;');
      document.write('<a href="contactframe.html" target="_top">Contact Us<\/a>');
      document.write('<\/p>');
   }

   if(play)
   {
      document.write('<p class="textmenu">');
      document.write('<a href="playlist.html" target="_self">Playlists<\/a>&nbsp;&nbsp;');
      document.write('<a href="pl2008.html" target="_self">2008<\/a>&nbsp;&nbsp;');
      document.write('<a href="pl2007.html" target="_self">2007<\/a>&nbsp;&nbsp;');
      document.write('<a href="pl2006.html" target="_self">2006<\/a>&nbsp;&nbsp;');
      document.write('<a href="pl2005.html" target="_self">2005<\/a>&nbsp;&nbsp;');
      document.write('<a href="pl2004.html" target="_self">2004<\/a>&nbsp;&nbsp;');
      document.write('<a href="pl2003.html" target="_self">2003<\/a>&nbsp;&nbsp;');
      document.write('<a href="pl2002.html" target="_self">2002<\/a>&nbsp;&nbsp;');
      document.write('<a href="pl2001.html" target="_self">2001<\/a>&nbsp;&nbsp;');
      document.write('<a href="pl2000.html" target="_self">2000<\/a>');
      document.write('<\/p>')
   }

   document.write('<p class="textmenu">');
//   document.write('<i><a href="' + framename + '.html" target="_top">Navigation Frame<\/a><\/i>&nbsp;&nbsp;');
   document.write('<a href="mainframe.html" target="_top">Home<\/a>&nbsp;&nbsp;');

   if(major)
   {   
      document.write('<a href="playframe.html" target="_top">Playlists<\/a>&nbsp;&nbsp;');
      document.write('<a href="curframe.html" target="_top">This Quarter<\/a>&nbsp;&nbsp;');
//      document.write('<a href="nxtframe.html" target="_top">Next Quarter<\/a>&nbsp;&nbsp;');
      document.write('<a href="sourceframe.html" target="_top">Resources<\/a>');
   }
// comment out next quarter when not happening  
   document.write('<\/p>');
}

