function shareIt(curClick,type){ var disclaimer = 'You are about to leave Electronic Arts website and go to a website owned by a third party. ' + 'Electronic Arts is not responsible for content on third party sites, and our privacy policy does not apply ' + 'to their information collection practices. Press OK to access the linked site or press CANCEL to return to your original page.'; if(!confirm(disclaimer)){ return false; } url = curClick.href; var url = encodeURIComponent(url); if(type == "facebook") { url = "http://www.facebook.com/share.php?u=" + url; } if(type == "delicious") { url = "http://del.icio.us/post?v=4&url=" + url; } if(type == "digg") { url = "http://digg.com/submit?phase=2&url=" + url; } window.open(url,'sharer','toolbar=1,status=0,scrollbars=yes'); return false; }