<!--
//=============================================================================
// FILE: funcs.js
// AUTH: 14/09/2005 RPN
// DESC: JS funcs - copied from old site
// MODS:
//=============================================================================


//=============================================================================
// FUNC: HighlightAll
// AUTH: RPN 11/10/2004
// DESC: highlight text in a textarea when executed
// ARGS: the field to hightlight
// RETN: void
// MODS: 
//=============================================================================
function HighlightAll(theField) 
{
    document.getElementById(theField).focus();
    document.getElementById(theField).select();
    if (document.all)
    {
        therange=document.getElementById(theField).createTextRange();
        therange.execCommand("Copy");
        window.status="Contents highlighted and copied to clipboard!";
        setTimeout("window.status=''",1800);
    }
}

-->