  var now = new Date();
  var date1 = "01-29-2010";
  var date2 = "03-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>Island District 2010 Recognition Dinner and Silent Auction</h1><h3 align='center'>Celebrating the Adventure – Continuing the Journey<br /><img src='images/100yearpatch.jpg'><br />100 Ways to Say Thank You</h3><p align='center'>You are invited to celebrate with us as we honor our outstanding adult leaders and the 2009 Island District Eagle Scouts.</p><p align='center'>March 13th, 2010 at 6:30 pm<br />LDS Church Cultural Hall<br />201 NE O Leary St., Oak Harbor, WA</p><p align='center'><a href='events/Island_District_2010_invite.pdf' target='_blank'>Click here for the flyer.</a></p><hr>")

}

