// create new webinar object
webinar = new webinarClass();

// add events to the list as:
//   webinar.add(type, date, url)
//   ...where:
//	type is 'commercial' or 'residential'
//	date is of the format yyyy-mm-dd
//	url is the URL of the webinar registration link
// ordering isn't important, as entries are resorted prior to being printed

webinar.add('commercial','2010-01-15','https://www2.gotomeeting.com/register/352242482');
webinar.add('commercial','2010-01-29','https://www2.gotomeeting.com/register/776563227');
webinar.add('commercial','2009-12-18','https://www2.gotomeeting.com/register/736670563');
webinar.add('commercial','2010-02-12','https://www2.gotomeeting.com/register/895305019');
webinar.add('commercial','2010-02-26','https://www2.gotomeeting.com/register/458836603');
webinar.add('commercial','2010-03-05','https://www2.gotomeeting.com/register/437444698');
webinar.add('commercial','2010-03-26','https://www2.gotomeeting.com/register/734171403');

webinar.add('commercial','2010-04-09','https://www2.gotomeeting.com/register/127270522');
webinar.add('commercial','2010-04-23','https://www2.gotomeeting.com/register/388644594');
webinar.add('commercial','2010-05-07','https://www2.gotomeeting.com/register/638212818');
webinar.add('commercial','2010-05-21','https://www2.gotomeeting.com/register/949100058');
webinar.add('commercial','2010-06-11','https://www2.gotomeeting.com/register/352406275');
webinar.add('commercial','2010-08-25','https://www2.gotomeeting.com/register/140271162');
webinar.add('commercial','2010-09-01','https://www2.gotomeeting.com/register/419843171');
webinar.add('commercial','2010-09-08','https://www2.gotomeeting.com/register/269191626');
webinar.add('commercial','2010-09-15','https://www2.gotomeeting.com/register/336291931');
webinar.add('commercial','2010-09-20','https://www2.gotomeeting.com/register/971568018');
webinar.add('commercial','2010-09-22','https://www2.gotomeeting.com/register/602906739');


webinar.add('residential','2010-01-11','https://www2.gotomeeting.com/register/979662298');
webinar.add('residential','2010-01-25','https://www2.gotomeeting.com/register/325665003');
webinar.add('residential','2010-02-08','https://www2.gotomeeting.com/register/556544970');
webinar.add('residential','2010-02-22','https://www2.gotomeeting.com/register/599842402');
webinar.add('residential','2010-03-01','https://www2.gotomeeting.com/register/888866395');
webinar.add('residential','2010-03-22','https://www2.gotomeeting.com/register/900624690');



webinar.add('residential','2010-04-05','https://www2.gotomeeting.com/register/507364050');
webinar.add('residential','2010-04-19','https://www2.gotomeeting.com/register/635037418');
webinar.add('residential','2010-05-03','https://www2.gotomeeting.com/register/280205427');
webinar.add('residential','2010-05-17','https://www2.gotomeeting.com/register/660416762');
webinar.add('residential','2010-06-21','https://www2.gotomeeting.com/register/991164715');
webinar.add('residential','2010-07-12','https://www2.gotomeeting.com/register/812939459');
webinar.add('residential','2010-07-19','https://www2.gotomeeting.com/register/904033138');
webinar.add('residential','2010-08-09','https://www2.gotomeeting.com/register/628647627');
webinar.add('residential','2010-08-16','https://www2.gotomeeting.com/register/712589946');
webinar.add('residential','2010-08-25','https://www2.gotomeeting.com/register/140271162');
webinar.add('residential','2010-09-01','https://www2.gotomeeting.com/register/419843171');
webinar.add('residential','2010-09-08','https://www2.gotomeeting.com/register/269191626');
webinar.add('residential','2010-09-15','https://www2.gotomeeting.com/register/336291931');
webinar.add('residential','2010-09-20','https://www2.gotomeeting.com/register/971568018');
webinar.add('residential','2010-09-22','https://www2.gotomeeting.com/register/602906739');

