function selectsrc(id)
{
    for (var tabIdx=1; tabObj=document.getElementById('src'+tabIdx); tabIdx++)
    {
        tabObj.style.display = (id==tabIdx) ? 'block' : 'none';
    }
    return;
}
