<!--
// copyright ©1998 M.L. Johnson of Wolff Den Design
// 98 June 6 written by M.L. Johnson of Wolff Den Design
// author M.L. Johnson of Wolff Den Design
// email - ladywolf@ladywolf.com
// All rights reserved, Worldwide

function linkToTarget( linkSelected )
{
  if (linkSelected.substring(0,2)=="*S")
	  { self.location.href=linkSelected.substring(2,linkSelected.length) }
  else
	  { top.location.href=linkSelected.substring(2,linkSelected.length) }
}


document.writeln(
'<center>',
'<table border=4 width=250>',
'<tr>',
'<td align=center>',
'<form>',
'<font face=Arial size=2>',
'<center>Rendezvous at the Den</center><br>',
'<select name=list>',
'<option value="*Smain.html">Home',
'<option value=none>',
'<option value="*Tmailto:exec@forwolves.org">E-mail',
'<option value=none>',
'<option value="*Tguestbook/wrfgbk.mv">Guestbook',
'<option value=none>',
'<option value="*Sachievements.html">Organization',
'<option value="*Sdirectors.html">&nbsp; &nbsp; &nbsp; Directors',
'<option value="*Sgoals.html">&nbsp; &nbsp; &nbsp; Goals',
'<option value=none>',
'<option value="*Tralph/index.html">Ralph Maughan',
'<option value=none>',
'<option value="*Slibrary.html">Students',
'<option value="*Sfreedom.html">&nbsp; &nbsp; &nbsp; Freedom',
'<option value="*Sfirst.html">&nbsp; &nbsp; &nbsp; He the First',
'<option value="*Sden.html">&nbsp; &nbsp; &nbsp; The Den',
'<option value="*Supdates.html">&nbsp; &nbsp; &nbsp; Landmark Pack',
'<option value=none>',
'<option value="*Strip.html">Trips &amp; Events',
'<option value=none>',
'<option value="*Swolves.html">Wolves',
'<option value="*Swreports.html">&nbsp; &nbsp; &nbsp; Updates', 
'<option value="*Shistory.html">&nbsp; &nbsp; &nbsp; History', 
'<option value="*Shelp.html">&nbsp; &nbsp; &nbsp; Helping',
'<option value="*Sorder.html">&nbsp; &nbsp; &nbsp; Donations',
'<option value=none>',
'</select>',
'<input type=button value="Go" onclick=linkToTarget(this.form.list.options[this.form.list.selectedIndex].value)>',
'</form>',
'</font>',
'</td>',
'</tr>',
'</table>',
'</center>');
document.close();
//-->

