
// Set the relative path for retrieving the bio, depending
// on whether the call is from the home page, the blog home,
// or a blog month.

function getbio() {

if (document.title=="604") {
	document.write("<a href=604");
	}
   else if (document.title=="Update America"){
	document.write("<a href=lists/604");
	}
   else if (document.title.substring(0,15)=="Update America:") {
	document.write("<a href=../../../../lists/604");
        }
   else {
	document.write("<a href=..");
	}
return;
}



// These are the only names that have bio after them

function ckName(nm) {

var lcName=nm.toLowerCase();

	if(lcName=="henry david hernandez") {
		document.write(" | ")	
                getbio();
		document.write("/bio/henry-david-hernandez.html><i>bio</i></a>")	
//		document.write(" | <a href=/bio/henry-david-hernandez.html><i>bio</i></a>")	

		return;
	}

	if(lcName=="deep post") {
		document.write(" | ")	
                getbio();
		document.write("/bio/deep-post.html><i>bio</i></a>")	
//		document.write(" | <a href=/bio/deep-post.html><i>bio</i></a>")	
		return;
	}

	if(lcName=="farleigh b. fox") {
		document.write(" | ")	
                getbio();
		document.write("/bio/farleigh-b-fox.html><i>bio</i></a>")	
//		document.write(" | <a href=/bio/farleigh-b-fox.html><i>bio</i></a>")	
		return;
	}

	if(lcName=="faith hope") {
		document.write(" | ")	
                getbio();
		document.write("/bio/faith-hope.html><i>bio</i></a>")	
//		document.write(" | <a href=/bio/faith-hope.html><i>bio</i></a>")	
		return;
	}
return;
}

