//Define function bar//Define site label textvar siteLabel = "The Italian Badger Site"/* Define site label colour*/var siteLabelColour = "#04a7a7"/*  Define optional links in the function bar	You can hide each optional link by setting the visibleOptional value false	By default, all 4 optional links are visible (visibleOptional = true)*/var titleOptional1 = "badger mail"var linkOptional1 = "mailto:info@badger.it"var visibleOptional1 = truevar titleOptional2 = ""var linkOptional2 = ""var visibleOptional2 = falsevar titleOptional3 = ""var linkOptional3 = ""var visibleOptional3 = falsevar titleOptional4 = ""var linkOptional4 = ""var visibleOptional4 = false//Define the section navigation barvar navLength = 6 	//The number of navigation menu items (max 8)var titleNav1 = "Home"var linkNav1 = "http://www.badger.it" var titleNav2 = "Il Tasso"var linkNav2 = "italiano/badbio.shtml"var titleNav3 = "I Tassologi"var linkNav3 = "common/badpeop.shtml" var titleNav4 = "Links del Tasso"var linkNav4 = "common/badlink.shtml"var titleNav5 = "Notizie del Tasso"var linkNav5 = "italiano/tasnews.shtml" var titleNav6 = "Site Map"var linkNav6 = "javascript:mappa('map.html')"var titleNav7 = "Your item 7"var linkNav7 = "http://your.url.com" var titleNav8 = "Your item 8"var linkNav8 = "http://your.url.com"var url = top.location.href;document.write('<div ID="funcNavL" CLASS="siteNav">' +  ' <TABLE border=0 WIDTH="940" cellpadding=1 cellspacing=0>' + '  <FORM METHOD="POST" ACTION="" ENCTYPE="x-www-form-urlencoded" class="box">' + '    <TR> ' + '      <TD ALIGN="LEFT" BGCOLOR="'+siteLabelColour+'" NOWRAP width="160" class="country">&nbsp;'+siteLabel+'</TD>' + '      <TD ALIGN="LEFT" BGCOLOR="#04a7a7" width="500" height="25" class="country"> ') // document.write('&nbsp; &nbsp; There are &nbsp;')// document.write("<SCRIPT SRC='http://codice.html.it/utenti_in_linea.asp?IDSito=3402'></SCRIPT>")// document.write('&nbsp; badgers on-line')document.write('</TD></form>') for (i=1;i<5;i++) {	if (eval('visibleOptional'+i)) {		eval('titleOptional'+i+'="|&nbsp;&nbsp;"+titleOptional'+i+'+"&nbsp;&nbsp;"')		document.write('<TD ALIGN="right" BGCOLOR="#04a7a7" NOWRAP VALIGN="MIDDLE" ID="cell'+(i+8)+'" onClick="javascript: top.location.href=&quot;/&quot;;" onmouseover="javascript: showCell(&quot;cell'+(i+8)+'&quot;)" onMouseOut="javascript:hideCell2(&quot;cell'+(i+8)+'&quot;);"><a href="'+eval('linkOptional'+i)+'">'+eval('titleOptional'+i)+'</A></TD>') 	}}document.write('</TR></TABLE></div><div ID="secNavL" CLASS="siteNav"><TABLE border=0 WIDTH="940" cellpadding=1 cellspacing=1 ID="table1"><TR>') 	for (i=1;i<=navLength;i++) {	if ( url.indexOf(eval("linkNav"+i)) != -1 ) bgColor = "#fc6c4b"		else bgColor = "#049999"		document.write('<TD BGCOLOR='+bgColor+' ALIGN="CENTER" WIDTH="12%" VALIGN="TOP" ID="cell'+i+'" onClick="javascript: top.location.href=&quot;'+eval("linkNav"+i)+'&quot;;" onMouseOver="javascript:showCell(&quot;cell'+i+'&quot;)" onMouseOut="javascript:hideCell(&quot;cell'+i+'&quot;,&quot;'+bgColor+'&quot;);"><A HREF="'+eval("linkNav"+i)+'" onMouseOver="window.status= &quot;'+eval("titleNav"+i)+'&quot;; return true;" onMouseOut="window.status= &quot; &quot;; return true;" >'+eval("titleNav"+i)+'</A></TD>')	}document.write('</TR></TABLE></div>')