First of all I would like to start by saying that, as of late I have had a lot of real life issues going on so have been a bit overwhelmed with all of that, so as i have been gone for some time I do apologize for that, and any responciblities that may have lapsed due to that.
and in order to make amends for my absence from this wonderful community I would like to offer the gift of cryptics main page source code that i hope will shed some light on the subject if not create more questions. first off this information was not collected illegally and is actually quite simple to come across. by simply clicking on the view drop down menu and selecting "view page source" now I am not going to copy and paste the entire source code into this message but what i will do is copy a portion of the countdown timer so that we may pick away at some very interesting facts found here. next I would like to Officially welcome cryptic to one of the greatest investigative communities that exist. the Star Trek Fans and especially the ones awaiting STO i personnally believe would make Sherlock Holmes look like an amature. lol oh and in addition the specific file being pulled for the countdown timer is called countdown.js
Portion 1 identifying the countdown timer name and file type.
<link href="/css/cryptic.css" rel="stylesheet" type="text/css" media="screen" />
<script language="JavaScript1.2" src="scripts/fade.js" type="text/javascript"></script>
<script language="JavaScript1.2" src="scripts/menu.js" type="text/javascript"></script>
<script language="JavaScript1.2" src="scripts/switchcontent.js" type="text/javascript"></script>
<script language="javascript" src="/scripts/countdown.js" type="text/javascript"></script>
Portion telling the page how to display the countdown. the part that I would like to highlight here is the use of the word "Launch Date"
<script type="text/javascript">
var joeexample=new switchcontent("switchgroup1", "div")
joeexample.setStatus('<img src="images/icons/collapse.gif" title="Collapse" alt="Collapse" />', '<img src="images/icons/expand.gif" title="Expand" alt="Expand" />')
joeexample.collapsePrevious(false)
joeexample.setPersist(true)
//joeexample.defaultExpanded(0,1,2,3,4)
joeexample.init()
</script>
<script type="text/javascript">
//cdLocalTime("ID_of_DIV_container", "server_mode", LocaltimeoffsetMinutes, "target_date", "opt_debug_mode")
//cdLocalTime.displaycountdown("base_unit", formatfunction_reference)
//Note: "launchdate" should be an arbitrary but unique variable for each instance of a countdown on your page:
var launchdate=new cdLocalTime("cdcontainer", 'June 13, 2008 05:53:00', 0, "July 28, 2008 00:00:00")
launchdate.displaycountdown("days", formatresults2)
</script>
</body>
</html><!-- 1213361580 -->