// use to add a paragraph to the biog section
// note that the paragraph is HTML, so can include links, bold tags, etc
// if the text or HTML contains a double quote, ensure this has been escaped with a backslash
// i.e. " should become \"

function addBiogParagraph(sHTMLContent)
{
    var sTextToAdd = "<p>";
    sTextToAdd += sHTMLContent;
    sTextToAdd += "</p>";
    document.getElementById("biogcell").innerHTML += sTextToAdd;
}
    
