  var now = new Date();
  var date1 = "09-01-2009";
  var date2 = "09-30-2009";
  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>&nbsp;</p><h2>Cub Scout Roundup!</h2><p>Now is the time for the Fall Roundup. If you need help with roundup, contact the Island District Cub Scout person extraordinaire, Terri Lauzen at (360) 679-9083.</p><hr />")

}

