Microsoft 2008 Global Launch Wave
2008 Global Launch Wave
963
Days
Windows Server 2008 • Microsoft Visual Studio 2008 • Microsoft SQL Server 2008

<!--BEGIN COPY: 2008 Worldwide Launch Wave Table -->
<script type="text/javascript">
window.onload=function(){
fixDate();
}
<!--this is an interval of three hours that checks for a date change -->
var intervalID = setInterval(fixDate, 10800000);
var count=1;

function fixDate(){
var eventDate = new Date("February 27, 2008 07:00:00")
var today= new Date(Date());
<!--the difference in milliseconds -->
var myNum=eventDate.valueOf()-today.valueOf();
<!--converting to days -->
myNum=myNum/86400000;
<!--rounding the crazy numbers -->
var newNum=Math.round(myNum);
<!--put it in the table -->
document.getElementById("myDate").innerHTML=newNum;
}
</script>

<table id="08LaunchWave" width="124" height="204" border="0" cellpadding="0" cellspacing="0">
<tr align="left" valign="top">
<td height="63" colspan="3"><img src="http://www.wedsg.com/winclient/images/top.gif" width="124" height="63" alt="2008 Global Launch Wave"></td>
</tr>
<tr align="left" valign="top">
<td height="17"><img src="http://www.wedsg.com/winclient/images/counterLeft.gif" width="38" height="17" alt=""></td>
<!--here is where the data lives -->
<td height="17" align="center" valign="middle" background="http://www.wedsg.com/winclient/images/counter.gif" id="myDate" style="overflow:hidden;letter-spacing:6px;width:49px;font-size:14px;height:12px;color:#FFFFFF;font-family:Arial, Helvetica, sans-serif;font-weight:bold;">963</td>
<td height="17"><img src="http://www.wedsg.com/winclient/images/counterRight.gif" width="37" height="17" alt=" "></td>
</tr>
<tr align="left" valign="top">
<td colspan="3"><img src="http://www.wedsg.com/winclient/images/days.gif" width="124" height="36" alt="Days"></td>
</tr>
<tr align="left" valign="top">
<td colspan="3"><img src="http://www.wedsg.com/winclient/images/Logos.gif" width="124" height="88" alt="Windows Server 2008 • Microsoft Visual Studio 2008 • Microsoft SQL Server 2008"></td>
</tr>
</table>
<!--END COPY: 2008 Worldwide Launch Wave Table -->