// JavaScript Documentfunction MM_reloadPage(init) {  //reloads the window if Nav4 resized  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);//-->  now = new Date();  eventDate1 = new Date("March 6, 2006");  msEachDay = 24 * 60 * 60 * 1000 ;    function daysUntilEvent1(){// Step 1:  daysRemaining1 = (eventDate1.getTime() - now.getTime()) / msEachDay;// Step 2:  daysRemaining1 = Math.round(daysRemaining1);// Step 3:  document.write( daysRemaining1 );}    now = new Date();  eventDate = new Date("February 11, 2006");  msEachDay = 24 * 60 * 60 * 1000 ;    function daysUntilEvent2(){// Step 1:  daysRemaining = (eventDate.getTime() - now.getTime()) / msEachDay;// Step 2:  daysRemaining = Math.round(daysRemaining);// Step 3:  document.write( daysRemaining );  }	function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}	