And while you're at it you might as well fix another small error in the same file.

Change:
Code:
function button_timeout() {
  document.checkout_confirmation.submit.disabled = false;
}
To:
Code:
function button_timeout() {
  document.checkout_confirmation.btn_submit.disabled = false;
}