function putbox(id, bx, by, ix, iy, z, src, alt) {
  document.writeln('<div style="width: ' + bx + 'px; height: ' + by + 'px;">')
  document.writeln('<img id="' + id + '" style="width: ' + ix + 'px; height: ' + iy + 'px; '
    + 'z-index: ' + z + ';" src="' + src + '" alt="' + alt + '"></div>')
}
putbox("loady", 496, 496, 496, 496, 8, "loady.png", "Loading...")
putbox("map", 2400, 2400, 1120, 1120, 0, "mega-red.png", "main map")
putbox("cursor", 72, 72, 32, 32, 5, "you-0.png", "you!")
for (j = 0; j < 3; ++j) putbox("star" + j, 72, 72, 32, 32, 2, "star-blue-2.png", "star")
for (j = 0; j < 4; ++j) putbox("rotor" + j, 72, 72, 32, 32, 2, "arrow-purple-0.png", "rotor")
for (j = 0; j < 10; ++j) putbox("dais0-" + j, 80, 80, 36, 36, 2, "dais-purple-0.png", "dais")
for (j = 0; j < 10; ++j) putbox("dais1-" + j, 80, 80, 36, 36, 2, "dais-purple-8.png", "dais")
for (j = 0; j < 10; ++j) putbox("dais2-" + j, 80, 80, 36, 36, 2, "dais-purple-0.png", "dais")
for (j = 0; j < 10; ++j) putbox("dais3-" + j, 80, 80, 36, 36, 2, "dais-purple-12.png", "dais")
putbox("congratulate", 512, 80, 496, 68, 6, "congrats.png", "congratulations")
putbox("glow", 256, 256, 120, 120, 1, "glow-0.png", "shiny thing")
