function showBio(bio)
{
people = new Array();
people[0] = 'blair_miller';
people[1] = 'deb_allen';
people[2] = 'bob_eckert';
people[3] = 'roger_firestien';
people[4] = 'dan_greenberger';
people[5] = 'angel_huerta';
people[6] = 'russ_schoen';
people[7] = 'gerard_puccio';
people[8] = 'doug_reid';
people[9] = 'sarah_thurber';
people[10] = 'jonathan_vehar';
people[11] = 'janice_francisco';
people[12] = 'don_lynch';
people[13] = 'john_cabra';


//get rid of the other bios that might be displayed
for (i=0;i<people.length;i++)
{
layer = people[i];
document.getElementById(layer).style.display = "none";
}

//get rid of the default blurb
document.getElementById('about_default').style.display = "none";

//display the selected blurb
document.getElementById(bio).style.display = "block";
}




function validateContact(theForm) {
    var why = "";
    why += isEmpty(theForm.VName.value,"You must enter a Name for this form.\n");
    why += isEmpty(theForm.Company.value,"You must enter your Company Name.\n");
    why += checkEmail(theForm.Email.value);
    why += isEmpty(theForm.Email.value,"You must enter an Email addres.\n");
    why += isEmpty(theForm.Phone.value,"You must enter your Phone.\n");
    
 if (why != "") {
       alert(why);
       return false;
    }
return true;
}