// title
titleStr = 'Contents : Reunion #36 : March 2005 &nbsp;'
// menu
menuStr = '<A NAME="top"></A><FORM NAME="menubar" CLASS="menuNN">'
menuStr+='<SELECT NAME="m1" CLASS="menuIE" onChange="jumpPage(this.form.m1)">'
menuStr+='<OPTION CLASS="firstitem" VALUE="" SELECTED>'+titleStr+'</OPTION>'
menuStr+='<OPTION VALUE="">----------</OPTION>'
menuStr+='<OPTION VALUE="index.html">Front page / editorial</OPTION>'
menuStr+='<OPTION VALUE="news.html">News update</OPTION>'
menuStr+='<OPTION VALUE="letters.html">Letters</OPTION>'

menuStr+='<OPTION VALUE="r36kudos.html">Kudos</OPTION>'
menuStr+='<OPTION VALUE="r36reminders.html">Reminders of home</OPTION>'

menuStr+='<OPTION VALUE="r36lazlo.html">Souvenirs</OPTION>'
menuStr+='<OPTION VALUE="r36lazloart.html">Four seasons</OPTION>'

menuStr+='<OPTION VALUE="r36axilla.html">The adventures of Malcolm &amp; Axilla, part 6</OPTION>'
menuStr+='<OPTION VALUE="r36nme.html">New Middle-earth: exploring beyond the mountains</OPTION>'
menuStr+='<OPTION VALUE="r36prov1.html">-- A provenance of Tolkien\'s sources</OPTION>'
menuStr+='<OPTION VALUE="r36timeline.html">-- New Middle-earth timeline</OPTION>'



menuStr+='<OPTION VALUE="">----------</OPTION>'
menuStr+='<OPTION VALUE="http://alt-tolkien.com">alt-tolkien.com website</OPTION>'
menuStr+='</SELECT><BR></FORM>'

// common scripts for reunion e-magazine
var lastMod = document.lastModified ; 

flashStr='<SPAN CLASS="flash"><A HREF="http://www.warofthering.net/toplist/index.php?vote=48" target="_blank">Vote for us at War of the Ring</A></SPAN>'
flashStr='<SPAN CLASS="flash"><A HREF="http://alt-tolkien.com">Visit us at<BR>alt-tolkien.com</A></SPAN>'


footerStr = '<CENTER><BR><HR><P CLASS="menuNN"><A HREF="#top">top</A> ~ <A HREF="index.html">reunion front page</A> ~ <A HREF="http://alt-tolkien.com">MeR home page</A></P></CENTER><P CLASS="footer">This page was last changed on '+lastMod+'. Reunion magazine is crafted for Middle-earth Reunion by Martin Baker and hosted at <A HREF="http://alt-tolkien.com">http://alt-tolkien.com</A>. If you have any problems please contact Martin at <A HREF="mailto:webmaster@alt-tolkien.com">webmaster@alt-tolkien.com</A>. The views and opinions expressed here are those of the individual authors and are not necessarily those of Middle-earth Reunion.</P>'
function jumpPage(subForm) {
   newPage = subForm.options[subForm.selectedIndex].value ;
   if (newPage != "") {
      window.location.href = newPage ;
   }
}

// popup function
popW =""
function pop(link,w,h,l,t){
  // eg <A HREF="javascript:pop('pix:pam.jpg','300','400','20','c')">Test</A>

  h = parseInt(h)+20
  w = parseInt(w)
  topPos  = parseInt(t);
  leftPos = parseInt(l); 

  // center popup window if asked for
  if (t == 'c') {
    if (screen) {topPos = (screen.height - h)/2}
    if (topPos <0) {topPos = 10}
  }
  if (l == 'c') {
    if (screen) {leftPos = (screen.width - w)/2}
    if (leftPos <0) {leftPos = 10}
  }

  if (popW && !popW.closed){
    popW.close()
  }

  evalStr = "popW = open('popup.html?close.html&"+link+"','popW','status=no,menubar=no,toolbar=no,location=no,resizable=no,left="+leftPos+",top="+topPos+",height="+h+",width="+w+"');"
  eval(evalStr);
  popW.focus();

} // end of pop() function







