// JavaScript Document

// call weather station, rfereshs more often than HAM reformat output - just grab temp F variable

weatherBox = '<div id="weatherBox2">\n'
weatherBox += '<table width="280" border="0" align="center" cellpadding="0" cellspacing="8">\n'
weatherBox += '<tr>\n'
weatherBox += '<td colspan="4"><img src="/images/contentSpacer.gif" width="17" height="15"/></td>\n'
weatherBox += '</tr>\n'
weatherBox += '<tr>\n'
weatherBox += '<td width="35%"><div align="left" class="style3">Washington D.C.</div></td>\n'
weatherBox += '<td width="15%" align="right"><strong>\n'
weatherBox += '<!--DC_WEATHER-->80&deg;\n'
weatherBox += '</strong></td>\n'
weatherBox += '<td width="35%" align="left"><span class="style3">Baltimore, MD</span></td>\n'
weatherBox += '<td width="15%" align="right"><strong>\n'
weatherBox += '<!--PA_WEATHER-->78&deg;\n'
weatherBox += '</strong></td>\n'
weatherBox += '</tr>\n'
weatherBox += '<tr>\n'
weatherBox += '<td width="35%"><div align="left" class="style3">Annapolis, MD</div></td>\n'
weatherBox += '<td width="15%" align="right"><div align="right"><strong>\n'
weatherBox += '<!--PA_WEATHER-->78&deg;\n'
weatherBox += '</strong></div></td>\n'
weatherBox += '<td width="35%" align="left"><span class="style3">Frederick, MD</span></td>\n'
weatherBox += '<td width="15%" align="right"><strong>\n'
weatherBox += '<!--CT_WEATHER-->77&deg;\n'
weatherBox += '</strong></td>\n'
weatherBox += '</tr>\n'
weatherBox += '<tr>\n'
weatherBox += '<td width="35%" align="center" valign="middle"><div align="left" class="style3">Manassas, VA</div></td>\n'
weatherBox += '<td width="15%" align="right" valign="middle"><strong>\n'
weatherBox += '<!--VA_WEATHER-->80&deg;\n'
weatherBox += '</strong></td>\n'
weatherBox += '<td width="35%" align="left" valign="middle"><span class="style3">Dover, DE</span></td>\n'
weatherBox += '<td width="15%" align="right" valign="middle"><strong>\n'
weatherBox += '<!--DE_WEATHER-->80&deg;\n'
weatherBox += '</strong></td>\n'
weatherBox += '</tr>\n'
weatherBox += '</table>\n'
weatherBox += '</div>\n'
document.write(weatherBox);
