function generateCatalogOutlines(){
  var script = '';
  CATALOG_PAGES.times(function(p){
    script += (
      'convert -size 780x504 xc:"#000d" -fill "#857D6FA0" -stroke "#D8C6A9" -strokewidth 1 ' +
      '-draw \'stroke-linecap round stroke-linejoin round stroke-dasharray 1 4 polygon ' +
      $$('#map_page_'+(p+1)+' area').map(function(a){ return a.coords }).join('\' -draw \'stroke-linecap round stroke-linejoin round stroke-dasharray 1 4 polygon ') +
      '\' '+(p+1)+'.png\n'
    );
  });
  var w = window.open();
  w.document.write('<pre><code>'+script+'</code></pre>');
}
