/*  <!--  Beginning of JavaScript Applet --  */
// Specify the marquee's width (in pixels):
var marqueewidth="750px";
// Specify the marquee's height:
var marqueeheight="20px";
// Specify the marquee's marquee speed (larger is faster 1-10):
var marqueespeed="5";
// Configure background color:
var marqueebgcolor="#dcdcdc" /*Gainsboro*/;
// Pause marquee onMouseover() (0=no; 1=yes.):
var pauseit=1;
/*  // --  End of JavaScript Applet  -->  */
/*  <script type="text/javascript">  */
/*  <!--  Beginning of JavaScript Applet --   */
function scrollit( seed ){
     startclock();
     var sp  = " ";  /*  single "space" character  */
     var dsp = "  "; /*  double "space" character  */

     var c   = 1;
     var cmd = "scrollit(100)";

     var m1  = "Permanent web site URL == [http://SOH1967.org].   ";
     var m2  = "Semi-centenarian Rockets continue to sizzle, seldom to fizzle.";
     var m3  = "   Soar to Heaven, Class of '67 !";
     var msg = m1 + m2 + m3;

     var ms  = 50;   /*  milliseconds of delay in timeout functions  */
     var out = sp;   /*  text to be displayed in the scroll window  */
     var top = 100;

     out = "Welcome ! ==> ";
     window.status = out;

     if (seed > top) {
          seed--;  /* Decrement Variable "seed" by 1 each cycle. */
          cmd = "scrollit(" + seed + ")";
          timerTwo = window.setTimeout(cmd,ms);
     }
     else if (seed > 0 && seed <= top) {
          for (c = 0; c < seed; c++) {
               out += sp;  /* Increment Variable "out" by single-space. */
          }
          out += msg;
          seed--;  /* Decrement Variable "seed" by 1 each cycle. */
          cmd = "scrollit(" + seed + ")";
          window.status = out;
          timerTwo = window.setTimeout(cmd,ms);
     }
     else if (seed <= 0) {
          if (-seed < msg.length) {
               out += msg.substring(-seed,msg.length);
               seed--;
               cmd = "scrollit(" + seed + ")";
               window.status = out;
               timerTwo = window.setTimeout(cmd,ms);
          }
          else {
               out = "May Rocket Spirit be with you.   Permanent URL == [http://SOH1967.org].";
               window.status = out;
               return /* This ends the function.  Comment this line out */
                      /* for repeating scroll (which gets boring).  */
               cmd = "scrollit(100)";
               window.status = out;
               timerTwo = window.setTimeout(cmd,ms);
          }
     }
} /* End of function scrollit( seed ) */
/*  // --  End of JavaScript Applet  -->  */
/*  <!--  Beginning of JavaScript Applet --   */
var base = new Date();
var countDownID = null;
var countDownRunning = false;
var timerID = null;
var timerRunning = false;
function showtime(){
 var now = new Date();
 var hours = now.getHours();
 var minutes = now.getMinutes();
 var seconds = now.getSeconds();
 var timeValue = "" + ((hours > 12) ? hours - 12 : hours);
 timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
 timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
 timeValue += (hours >= 12) ? " P.M." : " A.M.";
 document.clock.face.value = timeValue;
 timerID = setTimeout("showtime()",1000);
 timerRunning = true
} /* end of Function showtime() */
function startclock(){
   // Make sure the clock is stopped.  
   stopclock();
   showtime()
} /* end of Function startclock() */
function stopclock(){
	if(timerRunning)
		clearTimeout(countDownID);
	      clearTimeout(timerID);
	countDownRunning = false;
	timerRunning = false
} /* end of Function stopclock() */
/*  // --  End of JavaScript Applet  -->  */
/*  </script>  */