  var now = new Date();
  var date1 = "02-15-2008";
  var date2 = "03-14-2008";
  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 Roundtable<br />March 13, 2008</h1><p align='justify'>&nbsp;</p><p align='left'>Island District holds a monthly Roundtable meeting for all of its Boy, Cub, and Varsity Scout leaders. All leaders are welcome!</p><p>The purpose of Roundtable is to help units succeed by providing useful program ideas, information on policy, leadership training, and current information on upcoming Council events and training opportunities. Roundtables are the best way to find out what's going on!</p><ul><li>March Boy Scout topic: Patrol Method</li><li>April Boy Scout topic: Map and Compass</li><li>May Boy Scout topic: First Aid</li><li>June Boy Scout topic: Outing Ideas</li></ul><hr>")

}

