When i click "test" to frame is resized but when i click it again it doesnt resize back to its original size
function dropdownResize(){
var down = 0;
        if(down == 0){
                parent.document.getElementById('frameMain').rows = '84,84,*';
                down = 1;
            }
        else{
                parent.document.getElementById('frameMain').rows = '84,30,*';
                down = 0;
            }
    }
<a onclick="dropdownResize()"> test</a>
 
     
     
     
    