var message = "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.\n\n Press \"OK\" to access the linked site or press \"Cancel\" to return to your original page.";


function confirmExitScrabble()
{
    var return_value = confirm(message);
    if ( return_value == true )
        {
        window.open("http://www.scrabbleassociation.com");
        }
}


