// JavaScript image popup for A/CC image ht42.gif
// 5/20/2003 - written by Bill Allen <ballen@hohmanntransfer.com>
// (c) Copyright 2003 Columbine, Inc. - All Rights Reserved

pgStr = 'width=1008,height=610,left=0,top=0,resizable=1,horizontalscrollbar=1';
pgTitle = "Arc d' 2003 HT42";
img1str = '<img src="03ht42.gif" width="1000" height="267" '
          +'alt="2003 HT42\'s 12-day observing arc">';
img2str = '<a href="http://neo.jpl.nasa.gov/cgi-bin/db?name=2003+HT42">'
          +'<img src="03ht42orb.gif" width="306" height="72" '
          +'alt="Click for 2003 HT42 JPL orbit viewer" '
          +'style="border: 0;"></a>';
img3str = '<img src="03ht42bpr.gif" width="256" height="256" '
          +'alt="Blink pair from Pla D\'Arguines May 1st, half size">';

text = '<font color="yellow"><b>2003 HT42</b> is a tiny '
+'asteroid</font> estimated at about 35-45 meters/yards wide that travels '
+'almost entirely inside Earth\'s orbit. MIT\'s LINEAR survey program caught '
+'it on April 29th in the constellation Libra during a rare appearance in '
+'night skies. Over the next 12 days, observers measured HT42\'s progress '
+'across Hydra as it fell behind Earth and then disappeared Sunward. '
+'It had come to within six lunar distances on the best viewing opportunity of '
+'this century.<center>\n'+img2str+'</center><font size="-1">\n'
+'The chart at top is a simple 1:1 spherical '
+'"projection" with a one-degree grid. By comparison, Rafael Ferrando\'s May '
+'1st blink pair at right covers about a third of a '
+'degree square.</font><br>'; 

obsList = '<div class="h">Participating observatories</div>\n'
+'<a href="http://perso.wanadoo.es/obsconsell/">176 - Consell</a> - Mallorca<br>\n'
+'<a href="http://www.klet.org/klenot/">246 - KLENOT</a> - Czech Republic<br>\n'
+'<font color="orange">428 - Reedy Creek</font> - Australia<br>\n'
+'<a href="http://www.phys.canterbury.ac.nz/research/astronomy/astronomy_mount_john.html">474 - Mt. John</a> - New Zealand<br>\n'
+'<a href="http://www.3towers.com/">651 - Grasslands</a> - Arizona<br>\n'
+'<a href="http://www.ll.mit.edu/LINEAR/">704 - LINEAR</a> - New Mexico<br>\n'
+'<a href="http://www.3towers.com/sabino.htm">854 - Sabino Canyon</a> - Arizona<br>\n'
+'<a href="http://www.tenagraobservatories.com/">926 - Tenagra II</a> - Arizona<br>\n'
+'<a href="http://usuarios.lycos.es/fmizar/">941 - Pla D\'Arguines</a> - Spain<br>\n'
+'<a href="http://users.bigpond.com/higginsdj/">E14 - Ngunnawal</a> - Australia<br>\n'
+'<a href="http://itech.fgcu.edu/arts/stars/">H72 - E.L. Egan</a> - Florida<br>\n'
+'<font size="-1"><br style="margin-top: 6px;">This page is &copy;Copyright 2003<br>\n'
+'<a href="mailto:ballen@hohmanntransfer.com">Columbine, Inc.</a> &ndash; '
+'All Rights Reserved<br>\n';

function showHT42()
  {win=window.open("","accimg",pgStr);
   win.focus();
   win.document.open();
   win.document.write('<html><head><title>'+pgTitle+'</title>\n');
   win.document.write('<base href="http://www.hohmanntransfer.com/sas/ht42/">\n');
   win.document.write('<link rel="stylesheet" href="style.css" '
                      +'type="text/css">');
   win.document.write('</head><body><base target="_blank"><center>\n');
   win.document.write(img1str+'<br>\n');
   win.document.write('<table width="100%"><tr><td valign="top" width="416">'
                      +text+'</td><td align="center">'+img3str
                      +'</td><td valign="top">'+obsList);
   win.document.write('</td></tr></table>\n</body></html>');
   win.document.close();
 }

// ---end---

