//----------------------------------------------------------------------------//
    function GetElement ( ID )
    {
        if ( Browser == 'Internet Explorer' )
        {
            var Element = document.all[ID] ;
        }
        if ( Browser == 'Netscape Navigator' )
        {
            var Element = document.layer[ID] ;
        }
        if ( Browser == 'Mozilla / Mozilla Firefox' || Browser == 'Opera' )
        {
            var Element = document.getElementById(ID) ;
        }
        return Element ;
    }
//----------------------------------------------------------------------------//
    function StartList ( )
    {
        if ( document.all && document.getElementById )
        {
            NavigationRoot = document.getElementById ( 'Navigation' ) ;
            if ( NavigationRoot != null )
            {
                for ( Index = 0 ; Index < NavigationRoot.childNodes.length; Index++ )
                {
                    Node = NavigationRoot.childNodes[Index] ;
                    if ( Node.nodeName == 'LI' )
                    {
                        Node.onmouseover = function ( )
                        {
                            this.className += ' Over' ;
                        }
                        Node.onmouseout=function ( )
                        {
                            this.className=this.className.replace ( ' Over' , '' ) ;
                        }
                    }
                }
            }
        }
    }
//----------------------------------------------------------------------------//
    function UpdateZIndex ( ID , Number )
    {
        var Element = GetElement ( ID ) ;
        if ( Element != null )
        {
            Element.style.zIndex = Number ;
        }
    }
//----------------------------------------------------------------------------//
    function AddColleaguesEMailAddresses ( )
    {
        var Cell = GetElement ( 'ColleaguesEMailAddresses' ) ;
        Cell.innerHTML += '<br/><input type="text" name="ColleaguesEMailAddresses[]" value="" size="50" maxlength="255"/>' ;
    }
//----------------------------------------------------------------------------//
    function PopUp ( URL , Width , Height )
    {
        var Left = ( screen.width - Width ) / 2 ;
        var Top = ( screen.height - Height ) / 2 ;
        Day = new Date();
        ID = Day.getTime();
        eval("Page"+ID+"=window.open('" + URL + "','" + ID + "','height="+Height+",width="+Width+",top='+Top+',left='+Left+',toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0');");
    }
//----------------------------------------------------------------------------//