    var MenuItem1Text = null;
    var MenuItem2Text = null;
    var HiddenSwitch = null;
    
    if (domOk) {
        MenuItem1Text = getRef("MenuItem1Text");
        MenuItem2Text = getRef("MenuItem2Text");
        HiddenSwitch = getRef("HiddenSwitch");
        if (HiddenSwitch.value=="True") { ShowForm(); }
    }
    
    function ShowForm() {
        MenuItem1Text.style.display = "block";
        MenuItem2Text.style.display = "none";
    }
    
    function HideForm() {
        MenuItem1Text.style.display = "none";
        MenuItem2Text.style.display = "block";
    }    
