/***************************************** simple way to share links from flash *****************************************/ function shareSocialLink(shareType,url) { 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)){ var url = encodeURIComponent(url); if (shareType=="facebook") { url = "http://www.facebook.com/share.php?u=" + url; } else if (shareType=="digg") { url = "http://digg.com/submit?phase=2&url=" + url; } else if (shareType=="delicious") { url = "http://del.icio.us/post?v=4&url=" + url; } else { return false; } openFullChromeWindow(url, 'sharer') } }