    function dropdown(dropdown) 
    { 
        drop = document.getElementById(dropdown).style; 

        if (drop.display == 'none') 
        { 
            drop.display = 'block'; 
        } 
        else 
        { 
            drop.display = 'none'; 
        } 
    } 

