function confirmReset() {
  var agree=confirm("Are you sure you want to reset your FantasyTSP account?  All historical returns and allocations will be deleted.  Your account will be reset to a starting balance of $100,000 and a 100% G Fund allocation.  This action is irreversible.");
  if(agree)
    window.location="http://tspcenter.com/reset.php?confirmReset=true";
  else
    return false ;
}

function confirmDisable() {
  var agree=confirm("Are you sure you want to disable your FantasyTSP account?  All historical returns and allocations will be deleted.  You will still have an active forum membership, but your FantasyTSP account will be disabled.");
  if(agree)
    window.location="http://tspcenter.com/disable.php?confirmDisable=true";
  else
    return false ;
}

function confirmEnable() {
  var agree=confirm("Are you sure you want to enable FantasyTSP?  Your account will be created with a starting balance of $100,000 and a 100% G Fund allocation.");
  if(agree)
    window.location="http://tspcenter.com/enable.php?confirmEnable=true";
  else
    return false ;
}

function confirmPrivatize() {
  var agree=confirm("Are you sure you want to privatize FantasyTSP?  You will not be listed on the Leader Board and your FantasyTSP account will only be viewable by you.");
  if(agree)
    window.location="http://tspcenter.com/privatize.php?confirmPrivatize=true";
  else
    return false ;
}

function confirmUnprivatize() {
  var agree=confirm("Are you sure you want to unprivatize FantasyTSP?  You will be listed on the Leader Board and your FantasyTSP account will be viewable by everyone.");
  if(agree)
    window.location="http://tspcenter.com/unprivatize.php?confirmUnprivatize=true";
  else
    return false ;
}
