var m = new Array();	
// ***************************************
function ShowMenu(doc) {
	var d, ix, i = 0;
//	Xlert("ShowMenu");


	m[i++] = f("whoweare.htm", "Who We Are", "rbottom");
	m[i++] = f("whatwedo.htm", "What We Do", "rbottom");
	m[i++] = f("history.htm", "Our History", "rbottom");
	m[i++] = f("midway.htm", "Midway", "rbottom");
	m[i++] = f("concfood.htm", "Food Concessions", "rbottom");
	m[i++] = f("concgame.htm", "Game Concessions", "rbottom");
	m[i++] = f("safety.htm", "Safety", "rbottom");
	m[i++] = f("vendor.htm", "Vendor Info", "rbottom");
	m[i++] = f("feedback.htm", "Your Feedback", "rbottom");	
	m[i++] = f("EmpForm.asp", "Employment", "rbottom");		
	m[i++] = f("contact.htm", "Contact Us", "rbottom");
	
	for (ix = 0; ix < m.length; ++ix)            
		ShowEntry(ix, doc);
	return;
}
// ***************************************
function ShowEntry(ix, d) {

	if (isIE) 
		ShowExplorer(ix, d);
	  else 		
		ShowNetscape(ix, d);		  
return;
}
// ***************************************
function InsertEntry(htm, text, target) {    // constructor
	this.htm = htm;
	this.text = text;
	this.target = target;	
	return;
};
// ***************************************
function f(htm, text, target) {
	var obj = new InsertEntry(htm, text, target);
	return(obj);
}
// ***************************************
function ShowExplorer(ix, d) {
	d.write('<a HREF="');
	d.write(m[ix].htm);
//	d.write('.htm" target="');
	d.write('" target="');
	d.write(m[ix].target);
	d.write('"><SPAN buttonType="LeftNav" CLASS="LeftNavOff">');
	d.write(m[ix].text);
	d.write('</SPAN></a>');		
return;    
}        			
/*
// ***************************************
function ShowNetscape(ix, d) 
{


d.write('<tr><td><strong><font face="Arial"><span ');

d.write('style="font-size: 10pt color: white; background-color: orange;  ONMOUSEOVER="this.style.color = \"orange\" this.style.backgroundColor = \"white\"\" ONMOUSEOUT="this.style.color = \"white\" this.style.backgroundcolor = \"orange\";"');

d.write('><a href="');

d.write(m[ix].htm);
//	d.write('.htm" target="');
d.write('" target="');
d.write(m[ix].target);
d.write('">');
d.write(m[ix].text);
d.write('</a></span></font></strong></td></tr>');
return;    
}
*/
// ***************************************
function ShowNetscape(ix, d) 
{
d.write('<tr><td><strong><font face="Arial"><span style="font-size: 10pt"><a href="');
d.write(m[ix].htm);
//	d.write('.htm" target="');
d.write('" target="');
d.write(m[ix].target);
d.write('">');
d.write(m[ix].text);
d.write('</a></span></font></strong></td></tr>');
return;    
}
// ***************************************
function ShowSearchField(d)
{
d.write('<form method="get" action="http://search.atomz.com/search/">');
	d.write('<input type="hidden" name="sp-a" value="00042e0e-sp00000001">');
	d.write('<input type="hidden" name="sp-advanced" value="1">');
	d.write('<input type="hidden" name="sp-k" value="Public">');
		d.write('<div align="center">');
			d.write('<center>');
				d.write('<table align="center" cellpadding="0" cellspacing="0" bgcolor="#960000" width="100%">');
					d.write('<tr>');
						d.write('<td align="center" valign="top" width="116">');
							d.write('<div align="center">');
								d.write('<table align="center" border="0" cellspacing="0" width="113">');
									d.write('<tr><td align="center">');
										if (isIE) {
											d.write('<input type="text" size="14" name="sp-q">');
  										  } else {	
											d.write('<input type="text" size="11" name="sp-q">');  
										}	
									d.write('</td></tr>');
								d.write('</table>'); 
							d.write('</div>');
						d.write('</td>');							
					d.write('</tr>'); 
				d.write('</table>'); 
			d.write('</center>');
		d.write('</div>'); 
		d.write('<tr>')
			d.write('<td align="center">');
				d.write('<table border="0" cellpadding="0" cellspacing="0" width="100%">');
					d.write('<tr>');
						d.write('<td align="center">');
							d.write('<p align="center"><b><font face="Arial" size="2">');
								d.write('<input type="submit" value="Search">');
								d.write('<input type="button" value="Help" onclick="Help()"></font></b></p>');
						d.write('</td>');
					d.write('</tr>');
				d.write('</table>');
			d.write('</td>');
		d.write('</tr>'); 
d.write('</form>');
return;
}
