function createNavLinks(){	for (x=0; x<linkList.length; x++)	{		theParts = linkList[x].split("|")				// if the overline exists, format it		if (theParts[2])		{			theParts[2] = "<div class=\"nav-overline\">" + theParts[2] + "</div>";		}				if (theParts[0] == "divider")		{			document.write("<div class=\"dividerbar\">&#8226;&#8226;&#8226;</div>");		}		else if (window.location.pathname.indexOf(theParts[1]) > 0)		{			document.write("<a class=\"currentloc\">" + theParts[2] + theParts[0] + "</a>");		}		else		{			document.write("<a href=\"" + theParts[1] + "\">" + theParts[2] + theParts[0] + "</a><br>");		}	}}function createCoverNavLinks(){	for (x=0; x<linkListCover.length; x++)	{		theParts = linkListCover[x].split("|")		// if the overline exists, format it		if (theParts[2])		{			theParts[2] = "<div class=\"nav-overline\">" + theParts[2] + "</div>";		}		if (theParts[0] == "divider")		{			document.write("<div class=\"dividerbar\">&#8226;&#8226;&#8226;</div>");		}		else		{			document.write("<a href=\"" + theParts[1] + "\">" + theParts[2] + theParts[0] + "</a><br>");		}	}}function headerPick(){	browserName = navigator.appName;		if (browserName == "Netscape")	{	document.write("<img style=\"position:absolute;top:0px;left:0px;margin-top:2px;\" src=\"images/standard/spare-bricks-logo3-150w.png\" border=\"0\" alt=\"logo\">\n<img style=\"position:absolute;top:120px;left:0px;margin-top:2px;\" src=\"images/standard/pfwebzine-blurb.png\">");	}	else	{	document.write("<img style=\"position:absolute;top:0px;left:0px;margin-top:1px;\" src=\"images/standard/sb-header-windows.gif\" border=\"0\" alt=\"logo\">");	}}function coverLogoPick(){	browserName = navigator.appName;		if (browserName == "Netscape")	{	document.write("<img style=\"position:absolute;top:5px;left:10px;\" src=\"images/standard/spare-bricks-logo3-150w.png\"><img style=\"position:absolute;top:124px;left:10px;\" src=\"images/standard/pfwebzine-blurb.png\">");	}	else	{	document.write("<img style=\"position:absolute;top:0px;left:0px;\" src=\"images/standard/sb-cover-logo-windows.jpg\">");	}}function standardInfoHead(){	document.write("<div class=\"navheadinfo\">issue "+gIssueNumber+"<br>"+gIssueSeason+" "+gIssueYear+"</div>");}function copyrightInfo(){	document.write("<div class=\"copyinfo\">"+gIssueCopyrightNotice+"</div>"); }function frontCoverHighlights(){	for (x=0; x<highlightList.length; x++)	{		theParts = highlightList[x].split("|")		document.write("<a href=\"" + theParts[1] + "\">" + theParts[0] + "</a><br><br><br>");	}}
