/*<![CDATA[*/
//<!--

function screem_link_title()
{
    /* change window status to include title text for all links
        that have a title */
    for( var i = 0; i != document.links.length; ++ i ) {
            var link = document.links[ i ];
            if( link.title ) {
                    link.onmouseover = function() {
                            window.status = this.title;// +
                                        /*"  -  " + this.href;*/
                            return true;
                    };
            }
    }
}

//-->
/*]]>*/
