﻿function getDelicious() {
    //provided complete url string without query string
    //window.location = "http://del.icio.us/post?url=" + location.host + location.pathname + "&title=" + top.window.document.title;
    //provides complete url string with query string
    window.location = "http://del.icio.us/post?url=" + document.URL + "&title=" + top.window.document.title;
}

function getFaceBook() {
    window.location = "http://www.facebook.com/share.php?u=" + document.URL + "&t=" + top.window.document.title;
}

function getEmail() {
    window.location = "mailto:?subject=" + top.window.document.title + "&body=Thought you might like this: http://www" + document.URL;
}

function getTwitter() {
    window.location = "http://twitter.com/home?status=Currently%20viewing%20" + top.window.document.title + "%20" + document.URL;
}

function getDigg(){
    window.location = "http://digg.com/submit?url=" + document.URL;
}

function getReditt() {
    window.location = "http://reddit.com/submit?url=" + document.URL + "&title=" + top.window.document.title;
}

function getStumble() {
    window.location = "http://stumbleupon.com/submit?url=" + document.URL + "&title=" + top.window.document.title;
}