function linkMouseOver( itm )
{
    itm.style.textDecoration = "underline";
}

function linkMouseOut( itm )
{
    itm.style.textDecoration = "none";
}

function msgto(str)
{
    var decoded = "mailto:";

    while( str.length > 0 )
    {
        // Eat the string two chars at a time and convert each mouthful from hex
        // to decimal character code to character, building the decoded string
        // as we go.
        var chr = String.fromCharCode( parseInt(str.substr(0,2),16) );
        decoded = decoded + chr;
        str = str.substr(2);
    }
    
       if(document.images)
       {
          location.replace(decoded);
       }
       else
       {
          location = decoded;
       }
}