<!--
var gAutoPrint = true; // Tells whether to automatically call the print function

// Call this with one or more ids of tags you want to include in a printout
function printSpecial(id)
    {
    if (document.getElementById == null)
        {
        alert("The print ready feature is only available if you are using an browser. Please update your browswer.");
        return;
        }

    var html = '<HTML>\n<HEAD>\n';

    if (document.getElementsByTagName != null)
        {
        var headTags = document.getElementsByTagName("head");
        if (headTags.length > 0)
            html += headTags[0].innerHTML;
        }

    html += '\n</HE' + 'AD>\n<BODY><div align="left"><img src="http://www.raconline.org/images/listserv_monitor.gif" width="700" height="117" alt="image of logo for The Rural Assistance Center"></div><link href="../css/rac_default.css" rel="stylesheet" type="text/css"><link href="../css/rac_infoguide.css" rel="stylesheet" type="text/css">\n';


    for (var i = 0; i < arguments.length; i++)
        {
        var printReadyElem = document.getElementById(arguments[i]);

        if (printReadyElem != null)
            {
            html += printReadyElem.innerHTML;
            }
        }

    html += '\n</BO' + 'DY>\n</HT' + 'ML>';

    var printWin = window.open("","printSpecial");
    printWin.document.open();
    printWin.document.write(html);
    printWin.document.close();
    if (gAutoPrint)
        {
        printWin.print();
        }
    }
-->
