function marquee(place)
{
    //alert(place);
    // Microsoft Internet Explorer only...
    if (navigator.appName == "Microsoft Internet Explorer")
    {
       document.write("<BR>");
       document.write("<MARQUEE BGCOLOR='#80FF00' LOOP='infinite'>" +place+ "</MARQUEE>");
       document.write("<BR>");
    }
}

function printBrowser()
{
    //var lm = document.lastModified;
    //document.write("Last Modified: <B><FONT COLOR='RED'>" +lm+ "</FONT></B>.");
    var an = navigator.appName;
    var av = navigator.appVersion;
    document.write("You are using <B><FONT COLOR='#0000FF'>" +an+ "</FONT></B>, Version <B><FONT COLOR='#0000FF'>" +av+ "</FONT></B>.");
}

function printCopyright()
{
    document.write("<ADDRESS>&copy;");
    var d = new Date();
    var y = d.getFullYear();
    document.write(" 2005-" +y+ " Marc R. Blevins");
    document.write("</ADDRESS>");
}

function windowStatus(place)
{
    //alert(place);
    window.status=place;
    setTimeout("window.status=''",3000);
    return true;
}
