	var NavOpen = "";
	var NavMission = "";
	var NavServices = "";
	var NavDonate = "";
	var NavDirectors = "";
	var NavNews = "";
	var NavContact = "";
	var NavHome = "";
	var NavClose = "";
	var CompleteNavString = "";

	NavOpen += "" +
		"<table cellpadding='0' cellspacing='0' align='center' valign='top' width='738' height='51'>\n" +
		"  <tr>\n";

if (VarMission == 1) {
	NavMission += "" +
		"	<td width='92' height='51'>\n" +
		"		<img src='/img/nav_mission_on.gif' border='0' width='92' height='51' /></td>\n";
} else if (VarMission == 0) {
	NavMission += "" +
		"	<td width='92' height='51'>\n" +
		"		<a href='/beta/mission.shtml'><img src='/img/nav_mission.gif' border='0' width='92' height='51' name='MissionImg'" +
		"			onmouseover=\"MissionImg.src='/img/nav_mission_on.gif'\"" +
		"			onmouseout=\"MissionImg.src='/img/nav_mission.gif'\" /></a></td>\n";
}

if (VarService == 1) {
	NavServices += "" +
		"	<td width='67' height='51'>\n" +
		"		<img src='/img/nav_service_on.gif' border='0' width='67' height='51' /></td>\n";
} else if (VarService == 0) {
	NavServices += "" +
		"	<td width='67' height='51'>\n" +
		"		<a href='/beta/services.shtml'><img src='/img/nav_service.gif' border='0' width='67' height='51' name='ServiceImg'" +
		"			onmouseover=\"ServiceImg.src='/img/nav_service_on.gif'\"" +
		"			onmouseout=\"ServiceImg.src='/img/nav_service.gif'\" /></a></td>\n";
}

if (VarDonate == 1) {
	NavDonate += "" +
		"	<td width='110' height='51'>\n" +
		"		<img src='/img/nav_donation_on.gif' border='0' width='110' height='51' /></td>\n";
} else if (VarDonate == 0) {
	NavDonate += "" +
		"	<td width='110' height='51'>\n" +
		"		<a href='/beta/donate.shtml'><img src='/img/nav_donation.gif' border='0' width='110' height='51' name='DonateImg'" +
		"			onmouseover=\"DonateImg.src='/img/nav_donation_on.gif'\"" +
		"			onmouseout=\"DonateImg.src='/img/nav_donation.gif'\" /></a></td>\n";
}

if (VarDirector == 1) {
	NavDirectors += "" +
		"	<td width='124' height='51'>\n" +
		"		<img src='/img/nav_directors_on.gif' border='0' width='124' height='51' /></td>\n";
} else if (VarDirector == 0) {
	NavDirectors += "" +
		"	<td width='124' height='51'>\n" +
		"		<a href='/beta/directors.shtml'><img src='/img/nav_directors.gif' border='0' width='124' height='51' name='DirectorImg'" +
		"			onmouseover=\"DirectorImg.src='/img/nav_directors_on.gif'\"" +
		"			onmouseout=\"DirectorImg.src='/img/nav_directors.gif'\" /></a></td>\n";
}

if (VarNews == 1) {
	NavNews += "" +
		"	<td width='93' height='51'>\n" +
		"		<img src='/img/nav_news_on.gif' border='0' width='93' height='51' /></td>\n";
} else if (VarNews == 0) {
	NavNews += "" +
		"	<td width='93' height='51'>\n" +
		"		<a href='/beta/news.shtml'><img src='/img/nav_news.gif' border='0' width='93' height='51' name='NewsImg'" +
		"			onmouseover=\"NewsImg.src='/img/nav_news_on.gif'\"" +
		"			onmouseout=\"NewsImg.src='/img/nav_news.gif'\" /></a></td>\n";
}

if (VarContact == 1) {
	NavContact += "" +
		"	<td width='80' height='51'>\n" +
		"		<img src='/img/nav_contact_on.gif' border='0' width='80' height='51' /></td>\n";
} else if (VarContact == 0) {
	NavContact += "" +
		"	<td width='80' height='51'>\n" +
		"		<a href='/beta/contact.shtml'><img src='/img/nav_contact.gif' border='0' width='80' height='51' name='ContactImg'" +
		"			onmouseover=\"ContactImg.src='/img/nav_contact_on.gif'\"" +
		"			onmouseout=\"ContactImg.src='/img/nav_contact.gif'\" /></a></td>\n";
}


if (VarHome == 1) {
	NavHome += "" +
		"	<td width='172' height='51'>&nbsp;</td>\n";
} else if (VarHome == 0) {
	NavHome += "" +
		"	<td width='172' height='51'>\n" +
		"		<a href='/beta/'><img src='/img/nav_logo.gif' border='0' width='172' height='51' /></a></td>\n";
}

	NavClose += "" +
		"  </tr>\n" +
		"</table>\n";

	CompleteNavString = NavOpen+NavMission+NavServices+NavDonate+NavDirectors+NavNews+NavContact+NavHome+NavClose;


