
function displayHelp(helpid)
{
    document.getElementById("helpContainer").innerHTML= document.getElementById("help"+helpid).innerHTML;
    document.getElementById("helpContainer").style.visibility='visible';    
}

function showHelp(helpid)
{
    alert(document.getElementById(helpid).title);
}

function hideHelp(helpid)
{
    document.getElementById("helpContainer").style.visibility='hidden';  
}

