/* Compliance */

// Ensures tick box is checked when compliance submit button is clicked
function checkCompliance(frm){
  proceed=(frm.confirm.checked)?true:false
  if (!proceed){alert ("Before proceeding, please tick the box to confirm that you agree to the Terms & Conditions that govern the use of this website."); return false}
  frm.submit()
}