// Revision: @(#) $Id$
// ::=======================================================================::
// Dynamic web page utilities for the Bayesian Advisor Project site.
// James Royalty (jaylr@iglou.com) :: Started 07-Aug-2002
// ::=======================================================================::


function bapSectionBar( title )
{
    document.open();

    document.writeln( "<table width='100%' border='1' cellpadding='2' cellspacing='0'>" );
    document.write( "<tr><td bgcolor='#006699'><h2>" );
    document.write( "<font color='#EEEEEE'>" + title + "</font></h2></td>" );
    document.write( "</tr></table>" );

    document.close();
}


function bapSectionBarWithParagraph( title )
{
    document.open();

    document.write( "<p><table width='100%' border='1' cellpadding='2' cellspacing='0'>" );
    document.write( "<tr><td bgcolor='#006699'><h2>" );
    document.write( "<font color='#EEEEEE'>" + title + "</font></h2></td>" );
    document.writeln( "</tr></table></p>" );

    document.close();
}


function bapChildPageHeader( title )
{
    document.open();

    // creates the header.  The format is a two column table with the logo
    // on the left and content on the right.
    document.write( "<table width='100%' border='0' cellpadding='0' cellspacing='0'>" );
    document.write( "<tr>" );
    document.write( "<td width='40%' align='left'>" );
    document.write( "   <a href='http://www.csr.uky.edu/bap/'><img border='0' src='/bap/gfx/baplogo-75.jpg'></a>" );
    document.write( "</td>" );
    document.write( "<td width='60%' valign='center'>" );
    document.write( "<table width='100%' border='0'>" );
    document.write( "   <tr><td align='center'><h1>&raquo; " + title + " &laquo;</h1></td></tr>" );
    document.write( "   <tr><td align='center'>" );
    document.write( "       <small>" );
    document.write( "       <a href='/bap'><b>Home</b></a> | " );
    document.write( "       <a href='/bap/info/'><b>Info</b></a> | " );
    document.write( "       <a href='/bap/etc/'><b>Etc</b></a> |" );
    document.write( "       <a href='/bap/people/'><b>People</b></a> |" );
    document.write( "       <a href='/bap/projects/'><b>Projects</b></a> |" );
    document.write( "       <a href='/bap/pubs/'><b>Publications</b></a>" );
    document.write( "       </small>" );
    document.write( "   </td></tr>" );
    document.write( "</table>" );
    document.write( "</td>" );
    document.write( "</tr>" );
    document.write( "</table>" );

    // close the DOM, flushing the above writes.
    document.close();
}    


function bapNewsHeadline( title, date, name, email )
{
    document.open();

    document.write( "<big><b>" + title + " </b></big> <br>" );
    document.write( "<small><i>" + date + " :: posted by " + name +
        " &lt;" + email + "&gt;</i></small>" );
    document.close();
}

