var rmc = {
    Print:function()
    {
        window.print()
    },
    Email:function()
    {
        location.href = "mailto:?subject=" + (document.title != "" ? document.title : "Microsoft Research") + "&body=" + escape(location.href)
    },
    Share:function(s)
    {
        var n = "rmcshare";
        switch(s)
        {
            case "L":
                this.Open("http://favorites.live.com/quickadd.aspx?url=" + location.href + "&title=" + document.title,n,"");
                break;
            case "D":
                this.Open("http://digg.com/submit?url=" + location.href + "&title=" + document.title,n,"");
                break;
            case "d":
                this.Open("http://del.icio.us/post?url=" + location.href,n,"");
                break;
            case "m":
                this.Open("http://ma.gnolia.com/bookmarklet/add?url=" + location.href + "&title=" + document.title,n,"");
                break;
            case "N":
                this.Open("http://www.newsvine.com/_tools/seed?popoff=0&u=" + location.href,n,"");
                break;
            case "F":
                this.Open("http://www.facebook.com/sharer.php?u=" + location.href,n,"");
                break
        }
    },
    Open:function(u,n,f)
    {
        return window.open(u,n,f)
    }
}