function SendMail(recipient,domain,subject)
{
    location.href="mailto:" + recipient + "@" + domain + "?subject=" + subject;
}

function showHand(theobj)
{
    browsername=navigator.appName;

    if (browsername.indexOf("Microsoft")!=-1)
    {
        theobj.style.color = '#f00';
        theobj.style.textDecoration = 'none';
        theobj.style.cursor = 'hand';
    }
    else
    {
        theobj.style.color = '#f00';
        theobj.style.textDecoration = 'none';
        theobj.style.cursor = 'pointer';
    }
}

function hideHand(theobj)
{
    theobj.style.color = '#181f6d';
    theobj.style.textDecoration = 'underline';
    theobj.style.cursor = 'default';
}


function addBookmark(title,url)
{
    if (window.sidebar)
    {
        window.sidebar.addPanel(title, url,"");
    } else if( document.all ) {
        window.external.AddFavorite( url, title);
    } else if( window.opera && window.print ) {
        return true;
    } else {
        alert("You're browser requires a bookmark or favorite to be added manually.")
    }
}
