
function HandleOurTeamEmailButtonClick(employeeName, email){

	document.location.href='contact.aspx?qsSubject=2&qsVersion=0&qsToEmail=1';

}

//NOTE:  WE CANNOT USE THE WUC:FORM WHEN USING A CALLBACK BECAUSE IT DOESN'T WORK:
function NavigateComments() {    

    var divComments = document.getElementById("divComments"); //Look at the view source of the page to figure out why we have to put Siteskin_ in front of the ID

    html = cbGetClientCommentsRandom();    

    //Load the comments into the div container:
    var divComments = document.getElementById("divComments");
    divComments.innerHTML = html;    

}

//NOTE:  WE CANNOT USE THE WUC:FORM WHEN USING A CALLBACK BECAUSE IT DOESN'T WORK:
function NavigateStateAddresses() {

    var divStateOffices = document.getElementById("Siteskin_divStateOffices"); //Look at the view source of the page to figure out why we have to put Siteskin_ in front of the ID

    html = GetStateRegisteredAgentOfficesHtml();

    //Load the comments into the div container:
    var divStateOffices = document.getElementById("divStateOffices");
    divStateOffices.innerHTML = html;

    GetHourGlass().Hide();

}