
		var playerBats;
		var playerThrows;
		var playerDOB;




function dispBioInfo( theJsonObj ){
			playerBats = "Bats: " + theJsonObj.player[0].player_bats;
			playerThrows = "Throws: " + theJsonObj.player[0].player_throws;
			playerDOB = "Born: " + theJsonObj.player[0].player_birth_date;
			document.write("<b><span class=\"textSm white\">" + playerBats + "&nbsp;&nbsp;&nbsp;" + playerThrows + "&nbsp;&nbsp;&nbsp;" + playerDOB + "<span></b>");
			//document.write( theJsonObj.player[0].player_first_name );
		}
