<!-- //



function addMenuItem(name, alink, header)
{
	document.write('    <tr> ');
	document.write('      <td width="100%" height="18" class="menucampo" onMouseOver="MM_timelineStop(\'MENUOFF\')" onMouseOut="MM_timelinePlay(\'MENUOFF\');MM_timelineGoto(\'MENUOFF\',\'1\')"> ');
	if (header)
	{
		document.write('        <a style="width:100%" href="'+alink+'"><strong>'+name+'</strong></a></td>');
	}
	else
	{
		document.write('<a style="width:100%;text-indent: .5em;" href="'+alink+'">'+name+'</a></td>');
	}
	document.write('    </tr>');
}


document.write('  <table width="100%" border="0" cellpadding="1" cellspacing="1"  bgcolor="#FFFFFF">');
addMenuItem("Board of Directors","../campo/boardofdirectors.html",true);
	addMenuItem("Members","../campo/bodmembers.html",false);
	addMenuItem("Meeting Schedules","../campo/bodmeetingschedules.html",false);
	addMenuItem("Meeting Agendas","../campo/bodmeetingagendas.html",false);
addMenuItem("Technical Committee","../campo/technicalcommittee.html",true);
	addMenuItem("Members","../campo/tcmembers.html",false);
	addMenuItem("Meeting Schedules","../campo/tcmeetingschedules.html",false);
	addMenuItem("Meeting Agendas","../campo/tcmeetingagendas.html",false);
addMenuItem("Plans/Publications","../campo/plans.html",true);
document.write('  </table>');


//-->

