// validar EULA  -------------------------------------------------------------- // 

function validar(frm) {
  for(i=0; ele=frm.elements[i]; i++)
    if (ele.type=='checkbox' && ele.checked)
      return true;
  alert('You must agree to the terms of the licence to continue...');
  return false;
}

// validar EULA    -------------------------------------------------------------- // 
