/* Compliance */

// Ensures tick box is checked when compliance submit button is clicked
function checkCompliance(frm){
  proceed=(frm.confirm.checked)?true:false
  if (!proceed){alert ("You must tick the box to confirm that you have read and accepted the Terms, Conditions & Notices before you can enter this web site."); return false}
  frm.submit()
}

