function topmenu(lead,flag1,flag2,flag3,flag4,flag5,flag6,flag7,flag8){
var lnk = new Array(8);
var labl = new Array(8);
lnk[0] = lead+'index.html';
lnk[1] = lead+'guide/guide.html';
lnk[2] = lead+'weave/weave.html';
lnk[3] = lead+'pattern/pattern.html';
lnk[4] = lead+'picture/picture.html';
lnk[5] = lead+'explore/explore.html';
lnk[6] = lead+'links/links.html';
lnk[7] = 'mailto:dfh@hypatia.unh.edu';
labl[0] = 'Armoury Home';
labl[1] = 'Maille Guide';
labl[2] = 'Maille Weaves';
labl[3] = 'Pattern Library';
labl[4] = 'Picture Gallery';
labl[5] = 'Armour Explorer';
labl[6] = 'Armour Links';
labl[7] = 'Email';

active = 'onmouseover=this.style.backgroundColor="F2E8D7";this.style.cursor="hand"; onmouseout=this.style.backgroundColor="FFFFFF"; onclick=location.href="';

document.write('<table width=100% cellpadding=2 cellspacing=2 border=0><tr>');
for (var i = 1; i < topmenu.arguments.length; ++i) {
	if (topmenu.arguments[i] == 1){
		document.write('<td width=13% align=center ',active,lnk[i-1],'"><a href="',lnk[i-1],'"><span class="menu_head">',labl[i-1],'</span></a></td>');
	}
	else{
		document.write('<td width=13% align=center bgcolor="#DAC597"><span class="menu_head">',labl[i-1],'</span></td>');
	}
}
document.write('</tr></table>');

}