        function show(x) {

                var this_ref = document.all ? document.all[x] : document.getElementById(x);
                this_ref.style.display="block";

        }

        function hide(x) {

                var this_ref = document.all ? document.all[x] : document.getElementById(x);
                this_ref.style.display="none";

        }

