//LEGAL CONFRIM DIALOG

function confirmLegal() 
{
	var acceptsTerms = "Terms & Conditions of Downloading Materials\n\nThe materials provided on this web site are provided \"as is\" without warranties of any kind.  Electronic Arts Inc., its subsidiaries, divisions, affiliates and licensors (\"EA\") disclaim all warranties, either express of implied, including but not limited to, warranties of merchantability and fitness for a particular purpose. To the extent allowed by applicable law, in no event will EA be liable for damages of any kind to your hardware, peripherals or software programs as a result of your download or use of our materials.\n\nYou may download one copy of the materials onto a single computer for your personal, non-commercial, home use only, provided you keep intact all copyright, trademark and other proprietary notices.  No materials from this web site may be copied, reproduced, modified, republished, uploaded, posted, transmitted, broadcast or distributed in any way without the express written consent of EA.  Unauthorized use of the materials is a violation of EA's copyright and constitutes infringement of EA's proprietary rights.\n\nTo use these materials, you must agree to the above terms and conditions.  To accept this agreement and proceed with the download, click \"OK\" or click \"Cancel\" to decline.";
    if(confirm(acceptsTerms)) { return true; }
	else { return false; }
}
function popLegal(url,width,height,confirmation) {
   if(confirmLegal()){
      openCenteredWindow(url,'pop', width, height,'yes');
   }
}
function popWallpaper(url, width, height) {
   if(confirmLegal()){
      openCenteredWindow(url,'pop', width, height,'yes');
   }
}

function popExternal(url) {
 if(confirmExtLegal()){
      openFullChromeWindow(url);
   }
}

function confirmExtLegal() 
{
	var acceptsTerms = "You are about to leave the Electronic Arts website and go to a website owned by a third party.  Electronic Arts is not responsible for content o 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(acceptsTerms)) { return true; }
	else { return false; }
}
