var name = "/download/SendShield-1.0.3-setup.exe";

// For IE, we have to pop a window on link click.
function download_link_click() {
  if (navigator.appVersion.indexOf('MSIE') != -1) {
   window.open(name, 'download_window', 'toolbar=0,location=no,directories=0,status=0,scrollbars=0,resizeable=0,width=1,height=1,top=0,left=0');
   window.focus();
  }
}

// For everyone else, just start the download
function start_download() {
  if (navigator.appVersion.indexOf('MSIE') == -1) {
    window.location = name;
  }
}
