var gadget = new Countdown();
with (gadget) {
  tagID = "birthdayCountdown";
  setEventDate(2006, 8, 23, 23, 45, 0);
  event = "The anniversary of my birth!";
  onevent = "Time for prezzies!";
  afterevent = "Prezzies!";
}
addCountdown(gadget);

var squib = new Countdown();
with (squib) {
  tagID = "squibCountdown";
  setEventDate(2006, 10, 19, 17, 0, 0);
  event = "Sarah turns 18!";
  onevent = "We are off to the pub!";
  afterevent = "We are probably still in the pub!";
}
addCountdown(squib);
