| | 1181 | </td> |
|---|
| | 1182 | </tr> |
|---|
| | 1183 | <tr> |
|---|
| | 1184 | <td class="fieldName"> |
|---|
| | 1185 | Date & Time: |
|---|
| | 1186 | </td> |
|---|
| | 1187 | <td> |
|---|
| | 1188 | <!-- Set the timefields class for the first load of the page; |
|---|
| | 1189 | subsequent changes will take place using javascript without a |
|---|
| | 1190 | page reload. --> |
|---|
| | 1191 | <xsl:variable name="timeFieldsClass"> |
|---|
| | 1192 | <xsl:choose> |
|---|
| | 1193 | <xsl:when test="/bedeworkadmin/formElements/form/allDay/input/@checked='checked'">invisible</xsl:when> |
|---|
| | 1194 | <xsl:otherwise>timeFields</xsl:otherwise> |
|---|
| | 1195 | </xsl:choose> |
|---|
| | 1196 | </xsl:variable> |
|---|
| | 1197 | <xsl:choose> |
|---|
| | 1198 | <xsl:when test="/bedeworkadmin/formElements/form/allDay/input/@checked='checked'"> |
|---|
| | 1199 | <input type="checkbox" name="allDayFlag" onclick="swapAllDayEvent(this)" value="on" checked="checked"/> |
|---|
| | 1200 | <input type="hidden" name="eventStartDate.dateOnly" value="on" id="allDayStartDateField"/> |
|---|
| | 1201 | <input type="hidden" name="eventEndDate.dateOnly" value="on" id="allDayEndDateField"/> |
|---|
| | 1202 | </xsl:when> |
|---|
| | 1203 | <xsl:otherwise> |
|---|
| | 1204 | <input type="checkbox" name="allDayFlag" onclick="swapAllDayEvent(this)" value="off"/> |
|---|
| | 1205 | <input type="hidden" name="eventStartDate.dateOnly" value="off" id="allDayStartDateField"/> |
|---|
| | 1206 | <input type="hidden" name="eventEndDate.dateOnly" value="off" id="allDayEndDateField"/> |
|---|
| | 1207 | </xsl:otherwise> |
|---|
| | 1208 | </xsl:choose> |
|---|
| | 1209 | all day event<br/> |
|---|
| | 1210 | <div class="dateStartEndBox"> |
|---|
| | 1211 | <strong>Start:</strong> |
|---|
| | 1212 | <div class="dateFields"> |
|---|
| | 1213 | <span class="startDateLabel">Date </span> |
|---|
| | 1214 | <xsl:copy-of select="/bedeworkadmin/formElements/form/start/month/*"/> |
|---|
| | 1215 | <xsl:copy-of select="/bedeworkadmin/formElements/form/start/day/*"/> |
|---|
| | 1216 | <xsl:choose> |
|---|
| | 1217 | <xsl:when test="/bedeworkadmin/creating = 'true'"> |
|---|
| | 1218 | <xsl:copy-of select="/bedeworkadmin/formElements/form/start/year/*"/> |
|---|
| | 1219 | </xsl:when> |
|---|
| | 1220 | <xsl:otherwise> |
|---|
| | 1221 | <xsl:copy-of select="/bedeworkadmin/formElements/form/start/yearText/*"/> |
|---|
| | 1222 | </xsl:otherwise> |
|---|
| | 1223 | </xsl:choose> |
|---|
| | 1224 | </div> |
|---|
| | 1225 | <script language="JavaScript" type="text/javascript"> |
|---|
| | 1226 | <xsl:comment> |
|---|
| | 1227 | startDateDynCalWidget = new dynCalendar('startDateDynCalWidget', 'startDateCalWidgetCallback'); |
|---|
| | 1228 | </xsl:comment> |
|---|
| | 1229 | </script> |
|---|
| | 1230 | <!--<img src="{$resourcesRoot}/resources/calIcon.gif" width="16" height="15" border="0"/>--> |
|---|
| | 1231 | <div class="{$timeFieldsClass}" id="startTimeFields"> |
|---|
| | 1232 | <span id="calWidgetStartTimeHider" class="show"> |
|---|
| | 1233 | <xsl:copy-of select="/bedeworkadmin/formElements/form/start/hour/*"/> |
|---|
| | 1234 | <xsl:copy-of select="/bedeworkadmin/formElements/form/start/minute/*"/> |
|---|
| | 1235 | <xsl:if test="/bedeworkadmin/formElements/form/start/ampm"> |
|---|
| | 1236 | <xsl:copy-of select="/bedeworkadmin/formElements/form/start/ampm/*"/> |
|---|
| | 1237 | </xsl:if> |
|---|
| | 1238 | <xsl:text> </xsl:text> |
|---|
| | 1239 | <a href="javascript:bwClockLaunch('eventStartDate');"><img src="{$resourcesRoot}/resources/clockIcon.gif" width="16" height="15" border="0"/></a> |
|---|
| | 1240 | </span> |
|---|
| | 1241 | </div> |
|---|
| | 1242 | </div> |
|---|
| | 1243 | <div class="dateStartEndBox"> |
|---|
| | 1244 | <strong>End:</strong> |
|---|
| | 1245 | <xsl:choose> |
|---|
| | 1246 | <xsl:when test="/bedeworkadmin/formElements/form/end/type='E'"> |
|---|
| | 1247 | <input type="radio" name="eventEndType" value="E" checked="checked" onClick="changeClass('endDateTime','shown');changeClass('endDuration','invisible');"/> |
|---|
| | 1248 | </xsl:when> |
|---|
| | 1249 | <xsl:otherwise> |
|---|
| | 1250 | <input type="radio" name="eventEndType" value="E" onClick="changeClass('endDateTime','shown');changeClass('endDuration','invisible');"/> |
|---|
| | 1251 | </xsl:otherwise> |
|---|
| | 1252 | </xsl:choose> |
|---|
| | 1253 | Date |
|---|
| | 1254 | <xsl:variable name="endDateTimeClass"> |
|---|
| | 1255 | <xsl:choose> |
|---|
| | 1256 | <xsl:when test="/bedeworkadmin/formElements/form/end/type='E'">shown</xsl:when> |
|---|
| | 1257 | <xsl:otherwise>invisible</xsl:otherwise> |
|---|
| | 1258 | </xsl:choose> |
|---|
| | 1259 | </xsl:variable> |
|---|
| | 1260 | <div class="{$endDateTimeClass}" id="endDateTime"> |
|---|
| | 1261 | <div class="dateFields"> |
|---|
| | 1262 | <xsl:copy-of select="/bedeworkadmin/formElements/form/end/dateTime/month/*"/> |
|---|
| | 1263 | <xsl:copy-of select="/bedeworkadmin/formElements/form/end/dateTime/day/*"/> |
|---|
| | 1264 | <xsl:choose> |
|---|
| | 1265 | <xsl:when test="/bedeworkadmin/creating = 'true'"> |
|---|
| | 1266 | <xsl:copy-of select="/bedeworkadmin/formElements/form/end/dateTime/year/*"/> |
|---|
| | 1267 | </xsl:when> |
|---|
| | 1268 | <xsl:otherwise> |
|---|
| | 1269 | <xsl:copy-of select="/bedeworkadmin/formElements/form/end/dateTime/yearText/*"/> |
|---|
| | 1270 | </xsl:otherwise> |
|---|
| | 1271 | </xsl:choose> |
|---|
| | 1272 | </div> |
|---|
| | 1273 | <script language="JavaScript" type="text/javascript"> |
|---|
| | 1274 | <xsl:comment> |
|---|
| | 1275 | endDateDynCalWidget = new dynCalendar('endDateDynCalWidget', 'endDateCalWidgetCallback'); |
|---|
| | 1276 | </xsl:comment> |
|---|
| | 1277 | </script> |
|---|
| | 1278 | <!--<img src="{$resourcesRoot}/resources/calIcon.gif" width="16" height="15" border="0"/>--> |
|---|
| | 1279 | <div class="{$timeFieldsClass}" id="endTimeFields"> |
|---|
| | 1280 | <span id="calWidgetEndTimeHider" class="show"> |
|---|
| | 1281 | <xsl:copy-of select="/bedeworkadmin/formElements/form/end/dateTime/hour/*"/> |
|---|
| | 1282 | <xsl:copy-of select="/bedeworkadmin/formElements/form/end/dateTime/minute/*"/> |
|---|
| | 1283 | <xsl:if test="/bedeworkadmin/formElements/form/end/dateTime/ampm"> |
|---|
| | 1284 | <xsl:copy-of select="/bedeworkadmin/formElements/form/end/dateTime/ampm/*"/> |
|---|
| | 1285 | </xsl:if> |
|---|
| | 1286 | <xsl:text> </xsl:text> |
|---|
| | 1287 | <a href="javascript:bwClockLaunch('eventEndDate');"><img src="{$resourcesRoot}/resources/clockIcon.gif" width="16" height="15" border="0"/></a> |
|---|
| | 1288 | </span> |
|---|
| | 1289 | </div> |
|---|
| | 1290 | </div><br/> |
|---|
| | 1291 | <div id="clock" class="invisible"> |
|---|
| | 1292 | <xsl:call-template name="clock"/> |
|---|
| | 1293 | </div> |
|---|
| | 1294 | <div class="dateFields"> |
|---|
| | 1295 | <xsl:choose> |
|---|
| | 1296 | <xsl:when test="/bedeworkadmin/formElements/form/end/type='D'"> |
|---|
| | 1297 | <input type="radio" name="eventEndType" value="D" checked="checked" onClick="changeClass('endDateTime','invisible');changeClass('endDuration','shown');"/> |
|---|
| | 1298 | </xsl:when> |
|---|
| | 1299 | <xsl:otherwise> |
|---|
| | 1300 | <input type="radio" name="eventEndType" value="D" onClick="changeClass('endDateTime','invisible');changeClass('endDuration','shown');"/> |
|---|
| | 1301 | </xsl:otherwise> |
|---|
| | 1302 | </xsl:choose> |
|---|
| | 1303 | Duration |
|---|
| | 1304 | <xsl:variable name="endDurationClass"> |
|---|
| | 1305 | <xsl:choose> |
|---|
| | 1306 | <xsl:when test="/bedeworkadmin/formElements/form/end/type='D'">shown</xsl:when> |
|---|
| | 1307 | <xsl:otherwise>invisible</xsl:otherwise> |
|---|
| | 1308 | </xsl:choose> |
|---|
| | 1309 | </xsl:variable> |
|---|
| | 1310 | <xsl:variable name="durationHrMinClass"> |
|---|
| | 1311 | <xsl:choose> |
|---|
| | 1312 | <xsl:when test="/bedeworkadmin/formElements/form/allDay/input/@checked='checked'">invisible</xsl:when> |
|---|
| | 1313 | <xsl:otherwise>shown</xsl:otherwise> |
|---|
| | 1314 | </xsl:choose> |
|---|
| | 1315 | </xsl:variable> |
|---|
| | 1316 | <div class="{$endDurationClass}" id="endDuration"> |
|---|
| | 1317 | <xsl:choose> |
|---|
| | 1318 | <xsl:when test="/bedeworkadmin/formElements/form/end/duration/weeks/input/@value = '0'"> |
|---|
| | 1319 | <!-- we are using day, hour, minute format --> |
|---|
| | 1320 | <!-- must send either no week value or week value of 0 (zero) --> |
|---|
| | 1321 | <div class="durationBox"> |
|---|
| | 1322 | <input type="radio" name="eventDuration.type" value="daytime" onclick="swapDurationType('daytime')" checked="checked"/> |
|---|
| | 1323 | <xsl:variable name="daysStr" select="/bedeworkadmin/formElements/form/end/duration/days/input/@value"/> |
|---|
| | 1324 | <input type="text" name="eventDuration.daysStr" size="2" value="{$daysStr}" id="durationDays"/>days |
|---|
| | 1325 | <span id="durationHrMin" class="{$durationHrMinClass}"> |
|---|
| | 1326 | <xsl:variable name="hoursStr" select="/bedeworkadmin/formElements/form/end/duration/hours/input/@value"/> |
|---|
| | 1327 | <input type="text" name="eventDuration.hoursStr" size="2" value="{$hoursStr}" id="durationHours"/>hours |
|---|
| | 1328 | <xsl:variable name="minutesStr" select="/bedeworkadmin/formElements/form/end/duration/minutes/input/@value"/> |
|---|
| | 1329 | <input type="text" name="eventDuration.minutesStr" size="2" value="{$minutesStr}" id="durationMinutes"/>minutes |
|---|
| | 1330 | </span> |
|---|
| | 1331 | </div> |
|---|
| | 1332 | <span class="durationSpacerText">or</span> |
|---|
| | 1333 | <div class="durationBox"> |
|---|
| | 1334 | <input type="radio" name="eventDuration.type" value="weeks" onclick="swapDurationType('week')"/> |
|---|
| | 1335 | <xsl:variable name="weeksStr" select="/bedeworkadmin/formElements/form/end/duration/weeks/input/@value"/> |
|---|
| | 1336 | <input type="text" name="eventDuration.weeksStr" size="2" value="{$weeksStr}" id="durationWeeks" disabled="true"/>weeks |
|---|
| | 1337 | </div> |
|---|
| | 1338 | </xsl:when> |
|---|
| | 1339 | <xsl:otherwise> |
|---|
| | 1340 | <!-- we are using week format --> |
|---|
| | 1341 | <div class="durationBox"> |
|---|
| | 1342 | <input type="radio" name="eventDuration.type" value="daytime" onclick="swapDurationType('daytime')"/> |
|---|
| | 1343 | <xsl:variable name="daysStr" select="/bedeworkadmin/formElements/form/end/duration/days/input/@value"/> |
|---|
| | 1344 | <input type="text" name="eventDuration.daysStr" size="2" value="{$daysStr}" id="durationDays" disabled="true"/>days |
|---|
| | 1345 | <span id="durationHrMin" class="{$durationHrMinClass}"> |
|---|
| | 1346 | <xsl:variable name="hoursStr" select="/bedeworkadmin/formElements/form/end/duration/hours/input/@value"/> |
|---|
| | 1347 | <input type="text" name="eventDuration.hoursStr" size="2" value="{$hoursStr}" id="durationHours" disabled="true"/>hours |
|---|
| | 1348 | <xsl:variable name="minutesStr" select="/bedeworkadmin/formElements/form/end/duration/minutes/input/@value"/> |
|---|
| | 1349 | <input type="text" name="eventDuration.minutesStr" size="2" value="{$minutesStr}" id="durationMinutes" disabled="true"/>minutes |
|---|
| | 1350 | </span> |
|---|
| | 1351 | </div> |
|---|
| | 1352 | <span class="durationSpacerText">or</span> |
|---|
| | 1353 | <div class="durationBox"> |
|---|
| | 1354 | <input type="radio" name="eventDuration.type" value="weeks" onclick="swapDurationType('week')" checked="checked"/> |
|---|
| | 1355 | <xsl:variable name="weeksStr" select="/bedeworkadmin/formElements/form/end/duration/weeks/input/@value"/> |
|---|
| | 1356 | <input type="text" name="eventDuration.weeksStr" size="2" value="{$weeksStr}" id="durationWeeks"/>weeks |
|---|
| | 1357 | </div> |
|---|
| | 1358 | </xsl:otherwise> |
|---|
| | 1359 | </xsl:choose> |
|---|
| | 1360 | </div> |
|---|
| | 1361 | </div><br/> |
|---|
| | 1362 | <div class="dateFields" id="noDuration"> |
|---|
| | 1363 | <xsl:choose> |
|---|
| | 1364 | <xsl:when test="/bedeworkadmin/formElements/form/end/type='N'"> |
|---|
| | 1365 | <input type="radio" name="eventEndType" value="N" checked="checked" onClick="changeClass('endDateTime','invisible');changeClass('endDuration','invisible');"/> |
|---|
| | 1366 | </xsl:when> |
|---|
| | 1367 | <xsl:otherwise> |
|---|
| | 1368 | <input type="radio" name="eventEndType" value="N" onClick="changeClass('endDateTime','invisible');changeClass('endDuration','invisible');"/> |
|---|
| | 1369 | </xsl:otherwise> |
|---|
| | 1370 | </xsl:choose> |
|---|
| | 1371 | This event has no duration / end date |
|---|
| | 1372 | </div> |
|---|
| | 1373 | </div> |
|---|
| | 1374 | </td> |
|---|
| | 1375 | </tr> |
|---|
| | 1376 | <!-- Status --> |
|---|
| | 1377 | <tr> |
|---|
| | 1378 | <td class="fieldName"> |
|---|
| | 1379 | Status: |
|---|
| | 1380 | </td> |
|---|
| | 1381 | <td> |
|---|
| | 1382 | <xsl:choose> |
|---|
| | 1383 | <xsl:when test="/bedeworkadmin/formElements/form/status = 'TENTATIVE'"> |
|---|
| | 1384 | <input type="radio" name="event.status" value="CONFIRMED"/>confirmed <input type="radio" name="event.status" value="TENTATIVE" checked="checked"/>tentative <input type="radio" name="event.status" value="CANCELLED"/>cancelled |
|---|
| | 1385 | </xsl:when> |
|---|
| | 1386 | <xsl:when test="/bedeworkadmin/formElements/form/status = 'CANCELLED'"> |
|---|
| | 1387 | <input type="radio" name="event.status" value="CONFIRMED"/>confirmed <input type="radio" name="event.status" value="TENTATIVE"/>tentative <input type="radio" name="event.status" value="CANCELLED" checked="checked"/>cancelled |
|---|
| | 1388 | </xsl:when> |
|---|
| | 1389 | <xsl:otherwise> |
|---|
| | 1390 | <input type="radio" name="event.status" value="CONFIRMED" checked="checked"/>confirmed <input type="radio" name="event.status" value="TENTATIVE"/>tentative <input type="radio" name="event.status" value="CANCELLED"/>cancelled |
|---|
| | 1391 | </xsl:otherwise> |
|---|
| | 1392 | </xsl:choose> |
|---|
| | 1448 | </xsl:template> |
|---|
| | 1449 | |
|---|
| | 1450 | <xsl:template name="clock"> |
|---|
| | 1451 | <div id="bwClock"> |
|---|
| | 1452 | <!-- Bedework 24-Hour Clock time selection widget |
|---|
| | 1453 | used with resources/bwClock.js and resources/bwClock.css --> |
|---|
| | 1454 | <div id="bwClockClock"> |
|---|
| | 1455 | <img id="clockMap" src="{$resourcesRoot}/resources/clockMap.gif" width="368" height="368" border="0" alt="" usemap="#bwClockMap" /> |
|---|
| | 1456 | </div> |
|---|
| | 1457 | <div id="bwClockCover"> |
|---|
| | 1458 | <!-- this is a special effect div used simply to cover the pixelated edge |
|---|
| | 1459 | where the clock meets the clock box title --> |
|---|
| | 1460 | </div> |
|---|
| | 1461 | <div id="bwClockBox"> |
|---|
| | 1462 | <h2> |
|---|
| | 1463 | Bedework 24-Hour Clock |
|---|
| | 1464 | </h2> |
|---|
| | 1465 | <div id="bwClockDateTypeIndicator"> |
|---|
| | 1466 | type |
|---|
| | 1467 | </div> |
|---|
| | 1468 | <div id="bwClockTime"> |
|---|
| | 1469 | select time |
|---|
| | 1470 | </div> |
|---|
| | 1471 | <div id="bwClockCloseText"> |
|---|
| | 1472 | close |
|---|
| | 1473 | </div> |
|---|
| | 1474 | <div id="bwClockCloseButton"> |
|---|
| | 1475 | <a href="javascript:bwClockClose();">X</a> |
|---|
| | 1476 | </div> |
|---|
| | 1477 | </div> |
|---|
| | 1478 | <map name="bwClockMap" id="bwClockMap"> |
|---|
| | 1479 | <area shape="rect" alt="close clock" title="close clock" coords="160,167, 200,200" href="javascript:bwClockClose()"/> |
|---|
| | 1480 | <area shape="poly" alt="minute 00:55" title="minute 00:55" coords="156,164, 169,155, 156,107, 123,128" href="javascript:bwClockUpdateDateTimeForm('minute','55')" /> |
|---|
| | 1481 | <area shape="poly" alt="minute 00:50" title="minute 00:50" coords="150,175, 156,164, 123,128, 103,161" href="javascript:bwClockUpdateDateTimeForm('minute','50')" /> |
|---|
| | 1482 | <area shape="poly" alt="minute 00:45" title="minute 00:45" coords="150,191, 150,175, 103,161, 103,206" href="javascript:bwClockUpdateDateTimeForm('minute','45')" /> |
|---|
| | 1483 | <area shape="poly" alt="minute 00:40" title="minute 00:40" coords="158,208, 150,191, 105,206, 123,237" href="javascript:bwClockUpdateDateTimeForm('minute','40')" /> |
|---|
| | 1484 | <area shape="poly" alt="minute 00:35" title="minute 00:35" coords="171,218, 158,208, 123,238, 158,261" href="javascript:bwClockUpdateDateTimeForm('minute','35')" /> |
|---|
| | 1485 | <area shape="poly" alt="minute 00:30" title="minute 00:30" coords="193,218, 172,218, 158,263, 209,263" href="javascript:bwClockUpdateDateTimeForm('minute','30')" /> |
|---|
| | 1486 | <area shape="poly" alt="minute 00:25" title="minute 00:25" coords="209,210, 193,218, 209,261, 241,240" href="javascript:bwClockUpdateDateTimeForm('minute','25')" /> |
|---|
| | 1487 | <area shape="poly" alt="minute 00:20" title="minute 00:20" coords="216,196, 209,210, 241,240, 261,206" href="javascript:bwClockUpdateDateTimeForm('minute','20')" /> |
|---|
| | 1488 | <area shape="poly" alt="minute 00:15" title="minute 00:15" coords="216,178, 216,196, 261,206, 261,159" href="javascript:bwClockUpdateDateTimeForm('minute','15')" /> |
|---|
| | 1489 | <area shape="poly" alt="minute 00:10" title="minute 00:10" coords="209,164, 216,178, 261,159, 240,126" href="javascript:bwClockUpdateDateTimeForm('minute','10')" /> |
|---|
| | 1490 | <area shape="poly" alt="minute 00:05" title="minute 00:05" coords="196,155, 209,164, 238,126, 206,107" href="javascript:bwClockUpdateDateTimeForm('minute','05')" /> |
|---|
| | 1491 | <area shape="poly" alt="minute 00:00" title="minute 00:00" coords="169,155, 196,155, 206,105, 156,105" href="javascript:bwClockUpdateDateTimeForm('minute','00')" /> |
|---|
| | 1492 | <area shape="poly" alt="11 PM, 2300 hour" title="11 PM, 2300 hour" coords="150,102, 172,96, 158,1, 114,14" href="javascript:bwClockUpdateDateTimeForm('hour','23')" /> |
|---|
| | 1493 | <area shape="poly" alt="10 PM, 2200 hour" title="10 PM, 2200 hour" coords="131,114, 150,102, 114,14, 74,36" href="javascript:bwClockUpdateDateTimeForm('hour','22')" /> |
|---|
| | 1494 | <area shape="poly" alt="9 PM, 2100 hour" title="9 PM, 2100 hour" coords="111,132, 131,114, 74,36, 40,69" href="javascript:bwClockUpdateDateTimeForm('hour','21')" /> |
|---|
| | 1495 | <area shape="poly" alt="8 PM, 2000 hour" title="8 PM, 2000 hour" coords="101,149, 111,132, 40,69, 15,113" href="javascript:bwClockUpdateDateTimeForm('hour','20')" /> |
|---|
| | 1496 | <area shape="poly" alt="7 PM, 1900 hour" title="7 PM, 1900 hour" coords="95,170, 101,149, 15,113, 1,159" href="javascript:bwClockUpdateDateTimeForm('hour','19')" /> |
|---|
| | 1497 | <area shape="poly" alt="6 PM, 1800 hour" title="6 PM, 1800 hour" coords="95,196, 95,170, 0,159, 0,204" href="javascript:bwClockUpdateDateTimeForm('hour','18')" /> |
|---|
| | 1498 | <area shape="poly" alt="5 PM, 1700 hour" title="5 PM, 1700 hour" coords="103,225, 95,196, 1,205, 16,256" href="javascript:bwClockUpdateDateTimeForm('hour','17')" /> |
|---|
| | 1499 | <area shape="poly" alt="4 PM, 1600 hour" title="4 PM, 1600 hour" coords="116,245, 103,225, 16,256, 41,298" href="javascript:bwClockUpdateDateTimeForm('hour','16')" /> |
|---|
| | 1500 | <area shape="poly" alt="3 PM, 1500 hour" title="3 PM, 1500 hour" coords="134,259, 117,245, 41,298, 76,332" href="javascript:bwClockUpdateDateTimeForm('hour','15')" /> |
|---|
| | 1501 | <area shape="poly" alt="2 PM, 1400 hour" title="2 PM, 1400 hour" coords="150,268, 134,259, 76,333, 121,355" href="javascript:bwClockUpdateDateTimeForm('hour','14')" /> |
|---|
| | 1502 | <area shape="poly" alt="1 PM, 1300 hour" title="1 PM, 1300 hour" coords="169,273, 150,268, 120,356, 165,365" href="javascript:bwClockUpdateDateTimeForm('hour','13')" /> |
|---|
| | 1503 | <area shape="poly" alt="Noon, 1200 hour" title="Noon, 1200 hour" coords="193,273, 169,273, 165,365, 210,364" href="javascript:bwClockUpdateDateTimeForm('hour','12')" /> |
|---|
| | 1504 | <area shape="poly" alt="11 AM, 1100 hour" title="11 AM, 1100 hour" coords="214,270, 193,273, 210,363, 252,352" href="javascript:bwClockUpdateDateTimeForm('hour','11')" /> |
|---|
| | 1505 | <area shape="poly" alt="10 AM, 1000 hour" title="10 AM, 1000 hour" coords="232,259, 214,270, 252,352, 291,330" href="javascript:bwClockUpdateDateTimeForm('hour','10')" /> |
|---|
| | 1506 | <area shape="poly" alt="9 AM, 0900 hour" title="9 AM, 0900 hour" coords="251,240, 232,258, 291,330, 323,301" href="javascript:bwClockUpdateDateTimeForm('hour','09')" /> |
|---|
| | 1507 | <area shape="poly" alt="8 AM, 0800 hour" title="8 AM, 0800 hour" coords="263,219, 251,239, 323,301, 349,261" href="javascript:bwClockUpdateDateTimeForm('hour','08')" /> |
|---|
| | 1508 | <area shape="poly" alt="7 AM, 0700 hour" title="7 AM, 0700 hour" coords="269,194, 263,219, 349,261, 363,212" href="javascript:bwClockUpdateDateTimeForm('hour','07')" /> |
|---|
| | 1509 | <area shape="poly" alt="6 AM, 0600 hour" title="6 AM, 0600 hour" coords="269,172, 269,193, 363,212, 363,155" href="javascript:bwClockUpdateDateTimeForm('hour','06')" /> |
|---|
| | 1510 | <area shape="poly" alt="5 AM, 0500 hour" title="5 AM, 0500 hour" coords="263,150, 269,172, 363,155, 351,109" href="javascript:bwClockUpdateDateTimeForm('hour','05')" /> |
|---|
| | 1511 | <area shape="poly" alt="4 AM, 0400 hour" title="4 AM, 0400 hour" coords="251,130, 263,150, 351,109, 325,68" href="javascript:bwClockUpdateDateTimeForm('hour','04')" /> |
|---|
| | 1512 | <area shape="poly" alt="3 AM, 0300 hour" title="3 AM, 0300 hour" coords="234,112, 251,130, 325,67, 295,37" href="javascript:bwClockUpdateDateTimeForm('hour','03')" /> |
|---|
| | 1513 | <area shape="poly" alt="2 AM, 0200 hour" title="2 AM, 0200 hour" coords="221,102, 234,112, 295,37, 247,11" href="javascript:bwClockUpdateDateTimeForm('hour','02')" /> |
|---|
| | 1514 | <area shape="poly" alt="1 AM, 0100 hour" title="1 AM, 0100 hour" coords="196,96, 221,102, 247,10, 209,-1, 201,61, 206,64, 205,74, 199,75" href="javascript:bwClockUpdateDateTimeForm('hour','01')" /> |
|---|
| | 1515 | <area shape="poly" alt="Midnight, 0000 hour" title="Midnight, 0000 hour" coords="172,96, 169,74, 161,73, 161,65, 168,63, 158,-1, 209,-1, 201,61, 200,62, 206,64, 205,74, 198,75, 196,96, 183,95" href="javascript:bwClockUpdateDateTimeForm('hour','00')" /> |
|---|
| | 1516 | </map> |
|---|
| | 1517 | </div> |
|---|