<!--
function ShowProfileContent(strID)
{
    var bShow = document.getElementById(strID).style.display == 'block';
    var nCount = 1;
    while(document.getElementById('info' + nCount))
    {
        document.getElementById('info' + nCount).style.display = 'none';   
        nCount++;  
    }
    if(!bShow)
    {
        document.getElementById(strID).style.display = 'block'; 
    }
}
// -->
