// JavaScript Document

function google(){
window.open('http://www.google.com/bookmarks/mark?op=add&hl=en&bkmk='+encodeURIComponent(location.href)+'&annotation=&labels=&title='+encodeURIComponent(document.title));
}

function digg(){
window.open('http://digg.com/submit?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title));
}

function twitter(){
window.open('http://twitter.com/home?status='+encodeURIComponent(document.title)+' link : '+encodeURIComponent(location.href));
}

function facebook() {
u=location.href;
t=document.title;
window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436')
}

function stumble(){
window.open('http://www.stumbleupon.com/submit?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));
}
