  var now = new Date();
  var date1 = "03-10-2009";
  var date2 = "07-24-2010";
  date1 = date1.split("-");
  date2 = date2.split("-");
  var sDate = new Date(date1[0]+"/"+date1[1]+"/"+date1[2]);
  var eDate = new Date(date2[0]+"/"+date2[1]+"/"+date2[2]);
  var daysApart = Math.abs(Math.round((sDate-eDate)/86400000));
  if (now >sDate && now < eDate) {

document.write("<p align='center'><img src='images/aquasox.jpg'></p><h1>Everett AquaSox Boy Scout Overnight</h1><p>The Everett AquaSox and the Mount Baker Council are proud to announce the return of the Boy Scout overnight at Everett Memorial Stadium!</p><p align='center'><b>Friday - August 6, 2010</b></p><p>The evening will include everything from a pre-game Hurling, the baseball game, a meal voucher, post-game movie and of course the overnight experience in the outfield of Everett Memorial Stadium.</p><p align='center'><a href='events/Boy_Scout_Overnight_Flier_2010.pdf' target='_blank'>Click here for details and registration form</a></p><hr>")

}

