browser_name = navigator.appName;
browser_version = parseInt(navigator.appVersion);

lores = "";

if ((browser_name == "Netscape") && (browser_version < 4)) {
	lores = "_lo";
}
// Supress those pesky javascript error windows.

function stopError() {
	return true;
}

window.onerror = stopError;

secName = new Array();
secLink = new Array();
// secCount = 11;
i = 0;

secName[0] = "Home";
secName[1] = "Current Show";
secName[2] = "2010-2011 Season";
secName[3] = "Summer Show 2009";
secName[4] = "Box Office/Calendar";
secName[5] = "Directions";
secName[6] = "Volunteers";
secName[7] = "Past Shows/Awards";
secName[8] = "History";
secName[9] = "Board of Directors";
secName[10] = "Links";
secName[11] = "Auditions";
secName[12] = "Subscribers";
secName[13] = "Traveling One Acts";
secName[14] = "Holiday Show 2010";

secLink[0] = "/";
secLink[1] = "/seasons/2010-2011/Hallelujah Girls/index.htm";
secLink[2] = "/seasons/2010-2011/index.htm";
secLink[3] = "/seasons/Summer Shows/Fisherman/index.htm";
secLink[4] = "/reservations/index.htm";
secLink[5] = "/directions/index.htm";
secLink[6] = "/volunteers/index.htm";
secLink[7] = "/seasons/index.htm";
secLink[8] = "/history/index.htm";
secLink[9] = "/board/index.htm";
secLink[10] = "/links/index.htm";
secLink[11] = "/auditions/index.htm";
secLink[12] = "/subscribers/index.htm";
secLink[13] = "/one acts/index.htm";
secLink[14] = "/seasons/Holiday Shows/Mouse/index.htm";

document.writeln('	<title>' + ptitle + '</title>');

document.writeln('<STYLE TYPE="text/css">');
document.writeln('<!--');

document.writeln('A.menu:link, A.menu:visited, A.menu:active { text-decoration: none; color: #00008b}');
document.writeln('A.menu:hover { color: #ff0000; }');
document.writeln('-->');
document.writeln('</STYLE>');

document.writeln('</head>');

document.writeln('<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 bgcolor="#FFFFFF" background="/images/logobkg.jpg">');
document.writeln('<table width=100% border=0 cellspacing="-1" cellpadding=0>');
document.writeln('	<tr>');
document.writeln('		<td bgcolor="#00008b" width=210 height=50 align=center valign=middle><img src="/images/logo.gif"></td>');
document.writeln('		<td bgcolor="#00008b" align=center valign=middle width=100% colspan=2><font face="Arial Narrow" color="#FFFF00" size=6><i>' + ptitle + '</i></font></td>');
document.writeln('	</tr>');
document.writeln('	<tr>');
document.writeln('		<td valign=top width=210>');
document.writeln('			<table width=200 cellspacing="-1" cellpadding=0 border=0>');
document.writeln('				<tr>');
document.writeln('					<td colspan=3><img src="/images/menu_top' + lores + '.gif"></td>');
document.writeln('				</tr>');

while (i < secName.length) {
	document.writeln('	<tr>');
	document.writeln('		<td width=8 height=20 align=left bgcolor="#FFFF00"><img src="/images/menu_left' + lores + '.gif" width=10></td>');
	document.writeln('		<td width=180 bgcolor="#FFFF00" valign=middle>');
	document.writeln('			<font face="Verdana,Arial" color="#00008B" size="-4">');
	document.writeln('			<a href="' + secLink[i] + '" class=menu><b>' + secName[i] + '</b></a></font>');
	document.writeln('		</td>');
	document.writeln('		<td width=10 height=10 align=right bgcolor="#FFFF00"><img src="/images/menu_right' + lores + '.gif" width=10></td>');
	document.writeln('	</tr>');

	i++;
}

document.writeln('				<tr>');
document.writeln('					<td colspan=3><img src="/images/menu_bot' + lores + '.gif"></td>');
document.writeln('				</tr>');
document.writeln('			</table>');
document.writeln('		</td>');
document.writeln('		<td width=5>&nbsp;</td>');
document.writeln('		<td><br>');
