function menu(page,level)
{ 
	var text
	var text2


	text = "";
	text2 = "";

	if (level=='2')
	  {
	   text="../";
	  }
	else if (level=='3')
	  {
		text="../../";
	    text2 = "../";
	  }
	else if (level=='4')
	  {
		text="../../../";
	    text2 = "../../";
	  }

	if (page=='home')
	  {
	   document.write("<font color='black'><b>Home</b></font>");  
	  }
	else
	  {
	   document.write("<a class='menu' href='" + text + "index.html'>Home</a>");
	  }


	document.write("<BR><BR>");


	if (page=='aircraft')
	  {
	   document.write("<font color='black'><b>Strut Aircraft</b></font>");  
	  }
	else
	  {
	   document.write("<a class='menu' href='" + text + "aircraft.html'>Strut Aircraft</a>");
	  }

    
	document.write("<BR><BR>");


    if (page=='boxted')
	  {
   	   document.write("<font color='black'><b>Strut Flyin - Boxted</b></font><br>"); 
	  }
    else
	 {
     document.write("<a class='menu' href='" + text + "boxted/index.html'>Strut Flyin - Boxted</a><br>");
	  }

   
	if (page.substring(0,6)=='boxted')
	  {
		    document.write("<a class='menu' href='" + text2 + "2010/index.html'>2010</a><br>");
            document.write("<a class='menu' href='" + text2 + "2009_sep/index.html'>2009 Sep</a><br>");
            document.write("<a class='menu' href='" + text2 + "2009_jul/index.html'>2009 Jul</a><br>");
 	        document.write("<a class='menu' href='" + text2 + "2006/index.html'>2006</a><br>");
  	        document.write("<a class='menu' href='" + text2 + "2005/index.html'>2005</a><br>");

	  }


	document.write("<BR>");
	

	if (page=='info')
	  {
	   document.write("<font color='black'><b>Strut Info</b></font>");  
	  }
	else
	  {
	   document.write("<a class='menu' href='" + text + "info.html'>Strut Info</a>");
	  }

	
	document.write("<BR><BR>");


	if (page=='members')
	  {
	   document.write("<font color='black'><b>Strut Members</b></font>");  
	  }
	else
	  {
	   document.write("<a class='menu' href='" + text + "secure/members.html'>Strut Members</a>");
	  }


    document.write("<BR><BR>");


	if (page=='venue')
	  {
	   document.write("<font color='black'><b>Strut Venue</b></font>");  
	  }
	else
	  {
	   document.write("<a class='menu' href='" + text + "venue.html'>Strut Venue</a>");
	  }


	document.write("<BR><BR>");


	if (page=='notices')
	  {
	   document.write("<font color='black'><b>LAA Notices</b></font>");  
	  }
	else
	  {
	   document.write("<a class='menu' href='" + text + "notices.html'>LAA Notices</a>");
	  }


	document.write("<BR><BR>");


	if (page=='photos')
	  {
	   document.write("<font color='black'><b>Photo Gallery</b></font>");  
	  }
	else
	  {
	   document.write("<a class='menu' href='" + text + "photos.html'>Photo Gallery</a>");
	  }


	document.write("<BR><BR>");
	
	
	if (page=='links')
	  {
	   document.write("<font color='black'><b>Useful Links</b></font>");  
	  }
	else
	  {
	   document.write("<a class='menu' href='" + text + "links.html'>Useful Links</a>");
	  }

	document.write("<BR><BR>");
	
	
	if (page=='contacts')
	  {
	   document.write("<font color='black'><b>Contacts</b></font>");  
	  }
	else
	  {
	   document.write("<a class='menu' href='" + text + "contacts.html'>Contacts</a>");
	  }


	document.write("<BR><BR>");
}


