var bioIsDirty = true;

function updateBio( )
{
	if( bioIsDirty || document.getElementById( "bio" ).value == "" )
	{
		document.getElementById( "bio" ).value = document.getElementById( "firstname" ).value + " " + document.getElementById( "lastname" ).value;
	}
}