// SpaceOps External JS
function showDate() {

   <!--  Activate Cloaking Device 
   var now = new Date(); 
   var yr = now.getFullYear(); 
   var mName = now.getMonth() + 1; 
   var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate(); 
 
   if(mName==1) Month="January"; 
   if(mName==2) Month="February"; 
   if(mName==3) Month="March"; 
   if(mName==4) Month="April"; 
   if(mName==5) Month="May"; 
   if(mName==6) Month="June"; 
   if(mName==7) Month="July"; 
   if(mName==8) Month="August"; 
   if(mName==9) Month="September"; 
   if(mName==10) Month="October"; 
   if(mName==11) Month="November"; 
   if(mName==12) Month="December"; 

// String to display current date. 
    var todaysDate =(" " + Month + " " + dayNr + ", " + "" + yr + "<BR>"); 
 
// Write date to page. 
   document.open(); 
   document.write("<CENTER><FONT FACE=ARIAL COLOR=#000000 SIZE=2>"+todaysDate+"</FONT></CENTER>"); 
}

function showCaption() {
// Enter caption here.  NOTE:  Max 75 chars! 
   var caption = "Auroral lights over Svalbard, augmented ESTRACK Network station -- courtesy ESA"; 
// Display link here...
   var caplink = "http://www.opsjournal.org/technical/2008Q1_SOC_Maldari.pdf"; 

// Construct string
    var photo_caption =('<a href="' + caplink + '" target="_blank">' + caption + '</a>' + '<br /><br />'); 
 
// Write to page. 
   document.open(); 
   document.write("<CENTER><FONT FACE=ARIAL COLOR=#000000 SIZE=1>"+photo_caption+"</FONT></CENTER>"); 
}