function goYear(dPage,sType,iYearMin,iYearMax){
	if (iYearMin==undefined && iYearMax==undefined)
	{
		iYearMin=2001;
		iYearMax=2007;
	}
	if (iYearMin==undefined)
		iYearMin=2001;
	if (iYearMax==undefined)
		iYearMax=2007;
	dPage.write("<span class=\"title\">Year:</span>");
	dPage.write("<br /><br />");
	if (iYearMin<=2007 && iYearMax>=2007)
	{
		dPage.write("<a href=\""+sType+"2007.html\">2007</a>");
		dPage.write("<br /><br />");
	}
	if (iYearMin<=2006 && iYearMax>=2006)
	{
		dPage.write("<a href=\""+sType+"2006.html\">2006</a>");
		dPage.write("<br /><br />");
	}
	if (iYearMin<=2005 && iYearMax>=2005)
	{
		dPage.write("<a href=\""+sType+"2005.html\">2005</a>");
		dPage.write("<br /><br />");
	}
	if (iYearMin<=2004)
	{
		dPage.write("<a href=\""+sType+"2004.html\">2004</a>");
		dPage.write("<br /><br />");
	}
	if (iYearMin<=2003)
	{
		dPage.write("<a href=\""+sType+"2003.html\">2003</a>");
		dPage.write("<br /><br />");
	}
	if (iYearMin<=2002)
	{
		dPage.write("<a href=\""+sType+"2002.html\">2002</a>");
		dPage.write("<br /><br />");
	}
	if (iYearMin<=2001)
	{
		dPage.write("<a href=\""+sType+"2001.html\">2001</a>");
		dPage.write("<br /><br />");
	}
}
function addStory(dPage,sAuthorName,sStoryURL,sStoryTitle,sWordCount,sAdded,sMainPageURL,sShortURL,sEditorURL,sAuthorWebPageURL){
	dPage.write("<dt class=\"story\">");
	dPage.write(sAuthorName+" - ");
	dPage.write("<a href=\""+sStoryURL+"\" class=\"story\">");
	dPage.write(sStoryTitle);
	dPage.write("<img src=\"../images/readithere.gif\" alt=\"Click To Read\" height=\"38\" width=\"40\" border=\"0\" />");
	dPage.write("</a>");
	dPage.write("</dt>");
	if (sWordCount!="")
		dPage.write("<dd>c. "+sWordCount+" Words</dd>");
	dPage.write("<dd>Added "+sAdded+"</dd>");
	dPage.write("<dd>");
	if (sMainPageURL!=""){
		dPage.write("<a href=\"../books/"+sMainPageURL.charAt(0)+"/"+sMainPageURL+".html\">"+sAuthorName+"'s Main Bibliography</a><br />");
	}
	if (sShortURL!=""){
		dPage.write("<a href=\"../short/"+sShortURL.charAt(0)+"/"+sShortURL+".html\">"+sAuthorName+"'s Short Story Guide</a><br />");
	}
	if (sEditorURL!=""){
		dPage.write("<a href=\"../editors/"+sEditorURL.charAt(0)+"/"+sEditorURL+".html\">Anthologies Edited by "+sAuthorName+"</a><br />");
	}
	if (sAuthorWebPageURL!=""){
		dPage.write("<a href=\""+sAuthorWebPageURL+"\" target=\"new\">"+sAuthorName+"'s Web Site</a><br />");
	}
	dPage.write("<dd>");
}