// ==UserScript==
// @name          IE SSL Checker
// @namespace     Autocheck SSL Encryption
// @description   Automatically checks the SSL Encryption box for Daptiv
// @include       https://login.daptiv.com/*
// @include       https://na04.daptiv.com/default.aspx*
// ==/UserScript==

var chkboxes=document.getElementsByTagName('input');
for (var i=0; i < chkboxes.length; i++) {
  if (chkboxes[i].type=="checkbox" && chkboxes[i].name=="_ssl") {
    chkboxes[i].checked=true;
  }
}