<!-- // hide from old browsers

// hide text from MSIE browsers

with (document)
{
        write("<STYLE TYPE='text/css'>");
        if (navigator.appName == 'Microsoft Internet Explorer')
                {
                write(".hiddentext {display:none}  .outline {cursor:hand; text-decoration:underline}");
                }
        write("</STYLE>");
}

// show text on click for MSIE browsers

function expandIt(whichEl)
{
        if (navigator.appName == 'Microsoft Internet Explorer')
                {
                whichEl.style.display = (whichEl.style.display == "block" ) ? "none" : "block";
                }
        else return;
}
// end hiding from old browsers -->
