  var now = new Date();
  var date1 = "03-14-2010";
  var date2 = "05-13-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("<h1 align='center'>Congratulations to this year's winners!</h1><br><p>The Island District District Recognition dinner is over for this year. The food was great, the auction was great, but the best part of the evening was recognizing the 2009 Eagle Scouts and this year's award winners! <a href='events/2010_Island_District_Award_Recipients.doc' target='_blank'>Click here to see who received what award</a>. We will have short spots over the next several month's to highlight the folks who received awwards.</p><p align='center'><img src='events/aaaP3130070.jpg'><hr>");
}  

