﻿function showhidecopy(sho, hid) {
    var bs = document.getElementById(sho);
    var bh = document.getElementById(hid);
    if (null != bs && null != bh) {
        bs.style.display = "inline";
        bh.style.display = "none";
    }
}