<!-- 
 // Get the date
 var copyright=new Date();

 // Get the copyright year
 var update=copyright.getYear();

 // Get the files last modified date
 var lastmoddate = document.lastModified;

 // Create an if statement to test the value of lastmoddate
 document.write("<a href='http://www.usmc.mil' title='Link to HQMC'>- an Official Marine Corps Website -</a>&nbsp;&nbsp;");
 if(lastmoddate == 0)
  {
   // document.write("Copyright © 2001-"+ update + "&nbsp;&nbsp;&nbsp;&nbsp;(MAGTFTC 29 Palms)&nbsp;&nbsp;&nbsp;&nbsp;All rights Reserved.<br>Last Modified: Unknown");
   document.write("<a href='http://www.29palms.usmc.mil' title='Link to MCAGCC'><font color='#ffff00'>MCAGCC/MAGTFTC 29 Palms CA</a>&nbsp;&nbsp;Last Modified: Unknown</font>");
  }
 else
  {
   // document.write("Copyright © 2001-"+ update + "&nbsp;&nbsp;&nbsp;&nbsp;(MAGTFTC 29 Palms)&nbsp;&nbsp;&nbsp;&nbsp;All rights Reserved.<br>Last Modified: " + lastmoddate);
   document.write("<a href='http://www.29palms.usmc.mil' title='Link to MCAGCC'>MCAGCC/MAGTFTC 29 Palms CA</a><font color='black'>&nbsp;&nbsp;Last Modified: " + lastmoddate + "</font>");
  }

 // Stop Hiding Code Here 
 -->
