var authorbio = '';

var authtitle = '<img src="http://jskyway.com/jbooks/images_design/1pix_blck.gif" width="405" height="1"><img src="http://jskyway.com/jbooks/images_nav/authorbio.gif" width="112" height="14" hspace="10" vspace="5"><img src="http://jskyway.com/jbooks/images_design/1pix_blck.gif" width="405" height="1"><br>';



function showauthbio(){



if (authors.length > 0) 

	{

	//document.write(authtitle);

	for (var i=0;i<authors.length;i++)

          {

	  if (!(authors[i].bio=='null')) {

		  authorbio += "<table width=\"95%\" border=\"0\" class=Section1><tr>";

		  if (!(authors[i].img == "") && !(authors[i].img == 'null'))

			authorbio += "<td width=\"102\" align=\"center\" valign=\"top\"><img src=\"" + authors[i].img + "\" width=\"100\" height=\"100\"></td>";

		  authorbio += "<td valign=\"top\" class=\"body\"><i>" + authors[i].bio + "</i></td>";

		  authorbio += "</tr></table>\n";		

                  }

	  }

        document.write(authorbio);

		document.write("<br>");

	}

}

