/*
   Copyright M. Vesey December 2006
*/
function toggleReason() {
  if(document.getElementById) {
    with(document.getElementById("reason")) {
      if(style.display == 'block'||style.display == '') {
        style.display = 'none';
      }
      else {
        style.display = 'block';
      }
    }
  }
  return false;
}

function initialise() {
  toggleReason();
  initForm();
}
window.onload=initialise;
