<!-- Beginning of javascript/setCMSMessages.js

        function cant()
        {

            alert('Support Script Only... Does not render Web Page. Use Source View ---->');
        }


        function currentTab()
        {
            alert('Content Selected for Display is the Current Tab...');
        }

        function current()
        {
            alert('Content Selected for Display is part of the Current Tab Set...');
        }

        function requiresParm()
        {
            alert('Cannot Disply Requested Page... Requires Passed Parm which is not available...');
        }

        function cssFile()
        {
            alert('Cascading Style Sheet... Does not render Web Page. Use Source View ---->');
        }


        function top()
        {
            if(!window.scrollTo)
            {
                self.scroll(0,0);
            }
            else
            {
                self.scrollTo(0,0);
            }

        }

    // -->
