 

			
	
			
	
				
		function fixLinkValueTheatreBottom(strLinkValue, bExistingPage, bImportedFileLink)
		{
			
			if(!bExistingPage)
			{
				return strLinkValue;
			}
			
			
			
			
			return strRelativePathToRoot + strLinkValue;
		}
	
	
				
		function isCurrentPageTheatreBottom(strLinkValue, bExistingPage) 
		{	
			
			if(!bExistingPage)
			{
				return false;
			}
			
			strLinkValue = strLinkValue.toLowerCase();
			return (strRelativePagePath == strLinkValue);	
		}
	
				
		 
			function textMouseOnTheatreBottom(textObj) 
			{ 
				textObj.style.color='#990099'; 
				textObj.style.fontWeight='normal';
				textObj.style.textDecoration='none';
				textObj.style.fontStyle='normal';
			}  
			function textMouseOffTheatreBottom(textObj) 
			{ 
				textObj.style.color='#878F47'; 
				textObj.style.fontWeight='normal';
				textObj.style.textDecoration='none';
				textObj.style.fontStyle='normal';
			}
				
	
	
				
		function getOnClickTheatreBottom(strLinkValue, strLinkTarget) 
		{ 
			var strOnClick = "";
		
			strOnClick = ' onClick="';
			
			
			if(strLinkTarget == '_blank')
			{
				strOnClick = 'onClick="window.open(\'' + strLinkValue + '\');"';
			}
			else
			{
					
				strOnClick = 'onClick="parent.location = \'' + strLinkValue + '\';"';
			}
			
			return strOnClick;
		}	
		
			
		


		
		var nLinksPerRow = 4;
				
		
		var nVerticalSpacing = 0;
		var nHorizontalSpacing = 30;
		
		var nVertPaddingTop = Math.floor(nVerticalSpacing/2);
		var nVertPaddingBottom = Math.round(nVerticalSpacing/2);
		
		var nHorizPaddingLeft = Math.floor(nHorizontalSpacing/2);
		var nHorizPaddingRight = Math.round(nHorizontalSpacing/2);
		
		
		var nGeneralPadding = 10;
		
		
		var bBackgroundOrBorder = true;
				
		
		
		
				
		var strTextAlignment = 'ALIGN="center"';
							
				
		
		
		
				
		function getMouseOverHandlerTheatreBottom(bIsCurrentPage) 
		{
				
			
					
				if (bIsCurrentPage) return '';
			
			
			var strMouseOver = "";
			var strMouseOut = "";
			
			
			
				
				strMouseOver += ' textMouseOnTheatreBottom(this);';
				strMouseOut += ' textMouseOffTheatreBottom(this);';
			
					 								
			return ' onMouseOver="' + strMouseOver + '" onMouseOut="' + strMouseOut + '"';
		}
		
					
		function getStyleTheatreBottom(strFontColor, bIsCurrentPage) 
		{
			
			var strStyle = ' style="';
			
			strStyle += 'cursor:hand;';	
			strStyle += 'color:' + strFontColor + ';';

			if(bIsCurrentPage)
			{
				strStyle += 'font-weight: normal; ';
				strStyle += 'text-decoration: none; ';
				strStyle += 'font-style: normal; ';
			}
			else
			{
				strStyle += 'font-weight: normal; ';
				strStyle += 'text-decoration: none; ';
				strStyle += 'font-style: normal; ';
			}
								
			
			strStyle += '" ';
			
			return strStyle;
		}
	
		
				
		function getHTMLTheatreBottom(strDisplayName, strLinkValue, strLinkTarget,  nLinkNum, strGraphicName, bLastLink, bExistingPage, bImportedFileLink) 
		{      
			var strHTML = "";
		
			
			var bIsCurrentPage = isCurrentPageTheatreBottom(strLinkValue, bExistingPage);
					
						
			strLinkValue = fixLinkValueTheatreBottom(strLinkValue, bExistingPage, bImportedFileLink);
					
			var strFontColor = "";	
			var strBGHTML = "";	
			
			
			if (bIsCurrentPage) 
			{
				strFontColor = "#990099";
				
				
			} 
			else 
			{
				strFontColor = "#878F47";
			}
					
					
				
			var bNetscape = false;
			var strAppName = navigator.appName;
			var appVer = parseFloat(navigator.appVersion);
								
			if ( (strAppName == "Netscape") &&
				(appVer >= 4.0 && appVer < 5) ) {  
				bNetscape = true;
			}		
								
			
			var strOnClick = getOnClickTheatreBottom(strLinkValue, strLinkTarget); 
		
			
			var strStyle = getStyleTheatreBottom(strFontColor, bIsCurrentPage); 
			
			
			var strMouseOver = getMouseOverHandlerTheatreBottom(bIsCurrentPage);
				
			
				
			if(strLinkTarget == '_self')
			{
				strLinkTarget = '_parent';
			}
					
		
			
			
				if( (nLinkNum % nLinksPerRow) == 1) 
				{
					strHTML += '<TR ALIGN="CENTER" VALIGN="MIDDLE">';
					strHTML += '<TD>';
					strHTML += '<TABLE CELLSPACING="0" CELLPADDING="0" BORDER="0">';
					strHTML += '<TR>';
				}	
			  
			
			
			
						
				
			strHTML += '<TD ' + strTextAlignment + ' VALIGN="MIDDLE" NOWRAP ';	
			
			
			
				strHTML += strBGHTML;
				
				if(!bNetscape)
				{
					strHTML += strOnClick + strStyle + strMouseOver;
				}
				
				
			strHTML += '>';
			
				
			if(bNetscape)
			{
				
				strHTML += '<A HREF="' + strLinkValue + '" TARGET="' + strLinkTarget + '">'; 
			}		
				
			
			
			

					
					
					if(bBackgroundOrBorder && nVertPaddingTop > 0)
					{
						strHTML += '<IMG SRC="/tp.gif" WIDTH="1" HEIGHT="' + nVertPaddingTop + '" BORDER="0"><BR>';
					}
					
					
					if( ((nLinkNum % nLinksPerRow) != 1 || bBackgroundOrBorder) && nHorizPaddingLeft > 0) 
					{
						strHTML += '<IMG SRC="/tp.gif" WIDTH="' + nHorizPaddingLeft + '" HEIGHT="1" BORDER="0">';
					}				
					
					
					


			
			var strFormattingStart = ''; 
			var strFormattingEnd = '';
			
			if (bNetscape)
			{
				if (bIsCurrentPage) 
				{
					
					
				}
				else
				{
					
					
				}
			}
							
			
			strHTML += '<FONT';
			strHTML += ' FACE="Helvetica"';
			strHTML += ' CLASS="Helvetica9"'; 
			
			
			if(bNetscape)
			{
				strHTML += ' COLOR="' + strFontColor + '"';
			}
			strHTML += '>'; 
			
			strHTML += strFormattingStart + strDisplayName + strFormattingEnd;
												
			
			strHTML += '</FONT>';
			
					
			
		
		
			

					
					
					
					
					if ( (((nLinkNum % nLinksPerRow) != 0 && !bLastLink) || bBackgroundOrBorder) && nHorizPaddingRight > 0 ) 
					{
						strHTML += '<IMG SRC="/tp.gif" WIDTH="' + nHorizPaddingRight + '" HEIGHT="1" BORDER="0">';
					}
					
					
					if(bBackgroundOrBorder && nVertPaddingBottom > 0)
					{
						strHTML += '<BR><IMG SRC="/tp.gif" WIDTH="1" HEIGHT="' + nVertPaddingBottom + '" BORDER="0">';
					}

					
				
			if(bNetscape)
			{
				strHTML += '</A>';
			}	
		
						 
			strHTML += '</TD>';
			    

					
						
						if( !bLastLink && ((nLinkNum % nLinksPerRow) != 0) ) 
						{ 	
							strHTML += '<TD WIDTH="1"  BGCOLOR="#B5BF5F">';
							strHTML += '<IMG SRC="/tp.gif" WIDTH="1"></TD>';
						}
					
					
					
					if( ((nLinkNum % nLinksPerRow) == 0) || bLastLink )
					{
						strHTML += '</TR>';
						strHTML += '</TABLE>';
						strHTML += '</TD></TR>';
						
						
						if(!bLastLink && !bBackgroundOrBorder)
						{	
							if (nVerticalSpacing > 0)
							{
								strHTML += '<TR>';
								strHTML += '<TD>';
								strHTML += '<IMG SRC="/tp.gif" WIDTH="1" HEIGHT="' + nVerticalSpacing + '" BORDER="0">';
								strHTML += '</TD></TR>';
							}
						}
					}

				
			return strHTML;
		}

									
				
		function navElementTheatreBottom()
		{
			
			if(typeof counterTheatreBottom == "undefined")
			{
				counterTheatreBottom = 1;
			}
			else
			{
				counterTheatreBottom += 1;
			}
			var navID = counterTheatreBottom;
			
			
			if (navigator.userAgent.indexOf("Mozilla/3") != -1)
			{
				var msg = 'Sorry, since you are using an old version of Netscape, you may not be able to access all the pages in this Web site.';	
				document.write(msg);
			}
			else 
			{
				

						
						var strHTML = '';
							
						
						
							
						strHTML += '<TABLE CELLSPACING="0" CELLPADDING="0" BORDER="0"  BGCOLOR="#E7EBC6">';

													
						strHTML +=getHTMLTheatreBottom("Comedies", "Comedies.html", "_parent", 1, "IDTheatreBottom1", false,true,false);strHTML +=getHTMLTheatreBottom("Musicals", "musicals.html", "_parent", 2, "IDTheatreBottom2", false,true,false);strHTML +=getHTMLTheatreBottom("Plays", "plays.html", "_parent", 3, "IDTheatreBottom3", false,true,false);strHTML +=getHTMLTheatreBottom("Other&nbsp;Theatrical&nbsp;Productions", "othertheatre.html", "_parent", 4, "IDTheatreBottom4", true,true,false);

						strHTML += '</TABLE>';
							
						
							
						
						document.write(strHTML);

			}
		}
			
								
				
		function netscapeDivCheckTheatreBottom()
		{
			
				 			
						
				
			var strAppName = navigator.appName;
			var appVer = parseFloat(navigator.appVersion);
								
			if ( (strAppName == "Netscape") &&
				(appVer >= 4.0 && appVer < 5) ) {  
				document.write("</DIV>");
			}
		}
	
				
		var counterTheatreBottom;
			
			
				
		navElementTheatreBottom();
			
				
		netscapeDivCheckTheatreBottom();
			
	
