function  fixLinkValueNavigation3(strLinkValue, bExistingPage, bImportedFileLink)  {  if(!bExistingPage)
			{
				return strLinkValue;
			}  return strRelativePathToRoot + strLinkValue;
		}  function  isCurrentPageNavigation3(strLinkValue, bExistingPage)  {  if(!bExistingPage)
			{
				return false;
			}
			
			strLinkValue = strLinkValue.toLowerCase();
			return (strRelativePagePath == strLinkValue);	
		}  function  textMouseOnNavigation3(textObj)  { 
				textObj.style.color=  "#FFFF00"  ; 
			}  
			function  textMouseOffNavigation3(textObj)  { 
				textObj.style.color=  "#33CCFF"  ; 
			}  function  getOnClickNavigation3(strLinkValue, strLinkTarget)  { 
			var strOnClick = "";
		
			strOnClick = ' onClick="';  if(strLinkTarget == '_blank')
			{
				strOnClick = 'onClick="window.open(\'' + strLinkValue + '\');"';
			}
			else
			{  strOnClick = 'onClick="parent.location = \'' + strLinkValue + '\';"';
			}
			
			return strOnClick;
		}  var nImageWidth =  114  ;
		var nImageHeight =  31  ;  var nGeneralPadding = 10;  var nButtonsPerRow =  6  ;  var nVerticalSpacing =  1  ;
		var nHorizontalSpacing =  1  ;  function  mouseOnNavigation3(tdCell)  {
				tdCell.style.backgroundImage =  'url( http://www.homestead.com/~media/elements/LayoutClipart/../LayoutClipart/Buttons/Basic_Button_Red.gif )';  }
			function  mouseOffNavigation3(tdCell)  {
				tdCell.style.backgroundImage =  'url( http://www.homestead.com/~media/elements/LayoutClipart/../LayoutClipart/Buttons/Basic_Button_Dark_Red.gif )';  }  function  getMouseOverHandlerNavigation3(bIsCurrentPage)  {  if (bIsCurrentPage) return '';  var strMouseOver = "";
			var strMouseOut = "";  strMouseOver += '  mouseOnNavigation3(this);  ';
				strMouseOut += '  mouseOffNavigation3(this);  ';  strMouseOver += '  textMouseOnNavigation3(this);  ';
				strMouseOut += '  textMouseOffNavigation3(this);  ';  return ' onMouseOver="' + strMouseOver + '" onMouseOut="' + strMouseOut + '"';
		}  function  getStyleNavigation3(strImg, strFontColor)  {  var strStyle = ' style="';
			
			strStyle += 'cursor:hand;';	
			strStyle += 'color:' + strFontColor + ';';
			strStyle += 'background-image:url(' + strImg + ');';
			strStyle += 'background-repeat:no-repeat;';
			strStyle += 'background-position:center ';  strStyle += '  center  ';  strStyle += '" ';
			
			return strStyle;
		}  function  getHTMLNavigation3(strDisplayName, strLinkValue, strLinkTarget, nLinkNum, bLastLink, bExistingPage, bImportedFileLink)  {  var nColIndex = 0;  nColIndex = 0;  var strImg = "  http://www.homestead.com/~media/elements/LayoutClipart/../LayoutClipart/Buttons/Basic_Button_Dark_Red.gif  ";  var bIsCurrentPage =  isCurrentPageNavigation3(strLinkValue, bExistingPage);  strLinkValue =  fixLinkValueNavigation3(strLinkValue, bExistingPage, bImportedFileLink);  if (bIsCurrentPage) 
			{  strImg = "  http://www.homestead.com/~media/elements/LayoutClipart/../LayoutClipart/Buttons/Basic_Button_Red.gif  ";  strFontColor =  "#FFFFCC"  ;  } 
			else 
			{
				strFontColor =  "#33CCFF"  ;
			}  var bNetscape = false;
			var strAppName = navigator.appName;
			var appVer = parseFloat(navigator.appVersion);
								
			if ( (strAppName == "Netscape") &&
				(appVer >= 4.0 && appVer < 5) ) {  bNetscape = true;
			}  var strHTML = '';  if (nLinkNum == 1) {
				strHTML += '<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0">';
			}  strHTML += '<TR>';  strHTML += '<TD NOWRAP HEIGHT="' + nImageHeight + '"';
						
			strHTML += ' ALIGN=  "center"  VALIGN="MIDDLE"';
			
			if(!bNetscape)
			{  var strStyle =  getStyleNavigation3(strImg, strFontColor);  strHTML += strStyle;
			}
			else
			{  if(bIsCurrentPage)
				{
					strHTML += ' CLASS=  "navBackgroundSelectedNavigation3"  ';
				}
				else
				{
					strHTML += ' CLASS=  "navBackgroundNavigation3"  ';
				}
			}
			
			if(!bNetscape)
			{  var strOnClick =  getOnClickNavigation3(strLinkValue, strLinkTarget);  var strMouseOver =  getMouseOverHandlerNavigation3(bIsCurrentPage);  strHTML += strOnClick + strMouseOver;
			}  if(bNetscape)
			{
				strHTML += ' width="' + nImageWidth + '"';
			}
						
			strHTML += '>';  var strFormattingStart = ''; 
			var strFormattingEnd = '';  strFormattingStart += '<I>';
				strFormattingEnd += '</I>';  strFormattingStart += '<B>';
				strFormattingEnd += '</B>';  if(!bNetscape)
			{
				var nDivWidth = nImageWidth;  strHTML += '<DIV ';
				strHTML += ' STYLE="width:' + nDivWidth + 'px';  strHTML += '">';  }  if(bNetscape)
			{  strHTML += '<A HREF="' + strLinkValue + '" TARGET="';  if(strLinkTarget == '_self')
				{
					strLinkTarget = '_parent';
				}
				
				strHTML += strLinkTarget + '">'; 
			}  strHTML += '<FONT';
			strHTML += ' FACE=  "Times New Roman"  ';
			strHTML += ' CLASS=  "TimesRoman12"  ';  if(bNetscape)
			{
				strHTML += ' COLOR="' + strFontColor + '"';
			}
			else
			{  var strUnderline = ' STYLE="text-decoration:none"';  strHTML += strUnderline;
			}
		
			strHTML += '>'; 
						
			strHTML += strFormattingStart + strDisplayName + strFormattingEnd;  strHTML += '</FONT>';  if(!bNetscape)
			{
				strHTML += '</DIV>';
			}  if(bNetscape)
			{  strHTML += '</A>';
			}  strHTML += '</TD>';  strHTML += '</TR>';  if(!bLastLink)
					{
						strHTML += '<TR><TD>';
						strHTML += '<IMG SRC=  "/tp.gif"  HEIGHT="' + nVerticalSpacing + '" WIDTH="1" BORDER="0" ALT="">';
						strHTML += '</TD></TR>';
					}  if (bLastLink) 
			{
				strHTML += '</TABLE>';
			}
			
			return strHTML;
		}  function  navElementNavigation3()  {  if(typeof  counterNavigation3  == "undefined")
			{  counterNavigation3  = 1;
			}
			else
			{  counterNavigation3  += 1;
			}
			var navID =  counterNavigation3  ;  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 
			{  document.write(  getHTMLNavigation3("Home", "http://www.goldharmonica.com", "_blank", 1,false,false,false)  );  document.write(  getHTMLNavigation3("Huang", "huang.html", "_blank", 2,false,true,false)  );  document.write(  getHTMLNavigation3("Hering", "herring.html", "_blank", 3,false,true,false)  );  document.write(  getHTMLNavigation3("Hohner", "philspage.html", "_blank", 4,false,true,false)  );  document.write(  getHTMLNavigation3("Lee&nbsp;Oskar", "leeoskar.html", "_blank", 5,false,true,false)  );  document.write(  getHTMLNavigation3("Bass", "bass.html", "_blank", 6,false,true,false)  );  document.write(  getHTMLNavigation3("New&nbsp;Harps", "http://www.rwdesigns.net/buyharp.html", "_blank", 7,false,false,false)  );  document.write(  getHTMLNavigation3("Harp&nbsp;Care", "harpcare.html", "_blank", 8,false,true,false)  );  document.write(  getHTMLNavigation3("KC&nbsp;Harp&nbsp;Club", "harpclubs.html", "_blank", 9,false,true,false)  );  document.write(  getHTMLNavigation3("Classes", "classes.html", "_blank", 10,false,true,false)  );  document.write(  getHTMLNavigation3("Beginner&nbsp;Kits", "kits.html", "_blank", 11,false,true,false)  );  document.write(  getHTMLNavigation3("AHN&nbsp;Magazine", "ahn.html", "_blank", 12,false,true,false)  );  document.write(  getHTMLNavigation3("Feedback", "feedback.html", "_blank", 13,false,true,false)  );  document.write(  getHTMLNavigation3("Info&nbsp;Request", "info.html", "_blank", 14,false,true,false)  );  document.write(  getHTMLNavigation3("Club&nbsp;List", "clublist.html", "_blank", 15,false,true,false)  );  document.write(  getHTMLNavigation3("Plating&nbsp;Prices", "goldhohner.html", "_blank", 16,false,true,false)  );  document.write(  getHTMLNavigation3("Other&nbsp;Examples", "goldclubs.html", "_blank", 17,false,true,false)  );  document.write(  getHTMLNavigation3("Links", "links.html", "_blank", 18,false,true,false)  );  document.write(  getHTMLNavigation3("TV&nbsp;Interview", "1sttv.html", "_blank", 19,false,true,false)  );  document.write(  getHTMLNavigation3("Harp&nbsp;Pics", "harppics.html", "_blank", 20,false,true,false)  );  document.write(  getHTMLNavigation3("Contact&nbsp;Us", "http://www.goldharmonica.com/contactus.html", "_blank", 21,true,false,false)  );  }
		}  function  netscapeDivCheckNavigation3()  {  var strAppName = navigator.appName;
			var appVer = parseFloat(navigator.appVersion);
								
			if ( (strAppName == "Netscape") &&
				(appVer >= 4.0 && appVer < 5) ) {  document.write("</DIV>");
			}
		}  var  counterNavigation3;  navElementNavigation3();  netscapeDivCheckNavigation3();