﻿function ftnFamousDoctorRightMenu(strsrno)
{    
    switch (strsrno)
    {
        case ('1') :
        {
            document.all.div1.style.display = "block";
            document.all.div2.style.display = "none";
        } break;
        
        case ('2') :
        {
            document.all.div1.style.display = "none";
            document.all.div2.style.display = "block";
        } break;
    }
}