
function displaybio(nom)
{

var browser=navigator.appName;
var b_version=navigator.appVersion;
var version=parseFloat(b_version);

if ((browser=="Microsoft Internet Explorer")&& (version<4)){

	document.getElementById('biospot').style.display='inline';
	document.getElementById('biospot').innerHTML = bios[nom];


}
else
{
//	var biospot=""
//	biospot=document.getElementById('biospot');
//	biospot.style.display='inline';
//	biospot.appendChild(document.createTextNode(bios[nom]));

	document.getElementById('biospot').style.display='inline';
	document.getElementById('biospot').innerHTML = bios[nom];


}


}

function undisplaybio() 
{

	document.getElementById('biospot').style.display='none';

}




