﻿
function ChangeButtons(Control1, Control2)
{
    
    var c1 = document.getElementById(Control1);
    var c2 = document.getElementById(Control2);
   
    c1.style.display = "none";
    c2.style.display = "block";
    
}


