<!-- Begin

document.write('<DIV ID = "desc1" CLASS = "desc"><center>' +
'A distributed deep Web search across subject-specific databases and Web sites</center></DIV>' +
'<DIV ID = "desc2" CLASS = "desc"><center>Links to resources and sites within each subject</center></DIV>' +
'<DIV ID = "desc3" CLASS = "desc"><center>' +
'Links to professional organizations, conferences, funding information and reference material within each subject</center></DIV>');

// End -->    


    /* Used with mouseover text */
    /* Show an object */
    function showObject(object) {
        object.visibility = VISIBLE;
    }

    /* Hide an object */
    function hideObject(object) {
        object.visibility = HIDDEN;
    }




    /* Simple version detection */
    var isNS = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 4);
    /* These constants were not discussed in the article. They can be used in place
       of hidden and visible because on occasion Navigator has problems with the two */
    var HIDDEN = (isNS) ? 'hide' : 'hidden';
    var VISIBLE = (isNS) ? 'show' : 'visible';

    /* Create shortcut variables for different absolutely positioned elements */
    var desc1 = (isNS) ? document.desc1 : document.all.desc1.style;
        var desc2 = (isNS) ? document.desc2 : document.all.desc2.style;
    var desc3 = (isNS) ? document.desc3 : document.all.desc3.style;
    

          
      
    