//----------------------------------------------------------------------------//
    function Get_Element ( ID )
    {
//----------------------------------------------------------------------------//
        var Element = '' ;
//----------------------------------------------------------------------------//
        if ( Browser == 'Internet Explorer' )                               
        { 
            Element = document.all[ID] ;            
        }
//----------------------------------------------------------------------------//
        if ( Browser == 'Netscape Navigator' )                              
        { 
            Element = document.layer[ID] ;          
        }
//----------------------------------------------------------------------------//
        if ( Browser == 'Mozilla / Mozilla Firefox' || Browser == 'Opera' ) 
        { 
            Element = document.getElementById(ID) ; 
        }
//----------------------------------------------------------------------------//
        return Element ;
//----------------------------------------------------------------------------//
    }
//----------------------------------------------------------------------------//
    function Get_X_CoOrdinate ( Element )
    {
        var Left = 0;
        if ( Element.offsetParent )
        {
            while ( Element.offsetParent )
            {
                Left += Element.offsetLeft ;
                Element = Element.offsetParent ;
            }
        }
        else if ( Element.x )
        {
            Left += Element.x ;
        }
        return Left ;
    }
//----------------------------------------------------------------------------//
    function Get_Y_CoOrdinate ( Element )
    {
        var Top = 0;
        if ( Element.offsetParent)
        {
            while ( Element.offsetParent )
            {
                Top += Element.offsetTop ;
                Element = Element.offsetParent ;
            }
        }
        else if ( Element.y )
        {
            Top += Element.y ;
        }
        return Top;
    }
//----------------------------------------------------------------------------//
