Works in Mypal 78, but not in New Moon 28 and Serpent 52. The reason lies in this poorly written function performDownload (line 26, column 119) within the download.js script on the sooftware.com server:
function performDownload(num) {
event.preventDefault();
...
Strictly speaking, of course, the variable `event` (line 26, column 140) is not defined that way. But Mypal 78 and Supermium seem to be able to handle it. The function performDownload should actually have been constructed this way:
function performDownload(event,num) {
event.preventDefault();
...
New Moon 28 and Serpent 52 are very sensitive to things like that.