-- MySQL dump 10.11 -- -- Host: mysqldb.healthmetricsnetwork.info Database: hmnstandards01 -- ------------------------------------------------------ -- Server version 5.0.67-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `galaxia_activities` -- DROP TABLE IF EXISTS `galaxia_activities`; CREATE TABLE `galaxia_activities` ( `activityId` int(14) NOT NULL auto_increment, `name` varchar(80) default NULL, `normalized_name` varchar(80) default NULL, `pId` int(14) NOT NULL default '0', `type` enum('start','end','split','switch','join','activity','standalone') default NULL, `isAutoRouted` char(1) default NULL, `flowNum` int(10) default NULL, `isInteractive` char(1) default NULL, `lastModif` int(14) default NULL, `description` text, `expirationTime` int(6) unsigned NOT NULL default '0', PRIMARY KEY (`activityId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_activities` -- LOCK TABLES `galaxia_activities` WRITE; /*!40000 ALTER TABLE `galaxia_activities` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_activities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_activity_roles` -- DROP TABLE IF EXISTS `galaxia_activity_roles`; CREATE TABLE `galaxia_activity_roles` ( `activityId` int(14) NOT NULL default '0', `roleId` int(14) NOT NULL default '0', PRIMARY KEY (`activityId`,`roleId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_activity_roles` -- LOCK TABLES `galaxia_activity_roles` WRITE; /*!40000 ALTER TABLE `galaxia_activity_roles` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_activity_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_instance_activities` -- DROP TABLE IF EXISTS `galaxia_instance_activities`; CREATE TABLE `galaxia_instance_activities` ( `instanceId` int(14) NOT NULL default '0', `activityId` int(14) NOT NULL default '0', `started` int(14) NOT NULL default '0', `ended` int(14) NOT NULL default '0', `user` varchar(40) default NULL, `status` enum('running','completed') default NULL, PRIMARY KEY (`instanceId`,`activityId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_instance_activities` -- LOCK TABLES `galaxia_instance_activities` WRITE; /*!40000 ALTER TABLE `galaxia_instance_activities` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_instance_activities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_instance_comments` -- DROP TABLE IF EXISTS `galaxia_instance_comments`; CREATE TABLE `galaxia_instance_comments` ( `cId` int(14) NOT NULL auto_increment, `instanceId` int(14) NOT NULL default '0', `user` varchar(40) default NULL, `activityId` int(14) default NULL, `hash` varchar(32) default NULL, `title` varchar(250) default NULL, `comment` text, `activity` varchar(80) default NULL, `timestamp` int(14) default NULL, PRIMARY KEY (`cId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_instance_comments` -- LOCK TABLES `galaxia_instance_comments` WRITE; /*!40000 ALTER TABLE `galaxia_instance_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_instance_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_instances` -- DROP TABLE IF EXISTS `galaxia_instances`; CREATE TABLE `galaxia_instances` ( `instanceId` int(14) NOT NULL auto_increment, `pId` int(14) NOT NULL default '0', `started` int(14) default NULL, `name` varchar(200) NOT NULL default 'No Name', `owner` varchar(200) default NULL, `nextActivity` int(14) default NULL, `nextUser` varchar(200) default NULL, `ended` int(14) default NULL, `status` enum('active','exception','aborted','completed') default NULL, `properties` longblob, PRIMARY KEY (`instanceId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_instances` -- LOCK TABLES `galaxia_instances` WRITE; /*!40000 ALTER TABLE `galaxia_instances` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_instances` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_processes` -- DROP TABLE IF EXISTS `galaxia_processes`; CREATE TABLE `galaxia_processes` ( `pId` int(14) NOT NULL auto_increment, `name` varchar(80) default NULL, `isValid` char(1) default NULL, `isActive` char(1) default NULL, `version` varchar(12) default NULL, `description` text, `lastModif` int(14) default NULL, `normalized_name` varchar(80) default NULL, PRIMARY KEY (`pId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_processes` -- LOCK TABLES `galaxia_processes` WRITE; /*!40000 ALTER TABLE `galaxia_processes` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_processes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_roles` -- DROP TABLE IF EXISTS `galaxia_roles`; CREATE TABLE `galaxia_roles` ( `roleId` int(14) NOT NULL auto_increment, `pId` int(14) NOT NULL default '0', `lastModif` int(14) default NULL, `name` varchar(80) default NULL, `description` text, PRIMARY KEY (`roleId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_roles` -- LOCK TABLES `galaxia_roles` WRITE; /*!40000 ALTER TABLE `galaxia_roles` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_transitions` -- DROP TABLE IF EXISTS `galaxia_transitions`; CREATE TABLE `galaxia_transitions` ( `pId` int(14) NOT NULL default '0', `actFromId` int(14) NOT NULL default '0', `actToId` int(14) NOT NULL default '0', PRIMARY KEY (`actFromId`,`actToId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_transitions` -- LOCK TABLES `galaxia_transitions` WRITE; /*!40000 ALTER TABLE `galaxia_transitions` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_transitions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_user_roles` -- DROP TABLE IF EXISTS `galaxia_user_roles`; CREATE TABLE `galaxia_user_roles` ( `pId` int(14) NOT NULL default '0', `roleId` int(14) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', PRIMARY KEY (`roleId`,`user`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_user_roles` -- LOCK TABLES `galaxia_user_roles` WRITE; /*!40000 ALTER TABLE `galaxia_user_roles` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_user_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_workitems` -- DROP TABLE IF EXISTS `galaxia_workitems`; CREATE TABLE `galaxia_workitems` ( `itemId` int(14) NOT NULL auto_increment, `instanceId` int(14) NOT NULL default '0', `orderId` int(14) NOT NULL default '0', `activityId` int(14) NOT NULL default '0', `properties` longblob, `started` int(14) default NULL, `ended` int(14) default NULL, `user` varchar(40) default NULL, PRIMARY KEY (`itemId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `galaxia_workitems` -- LOCK TABLES `galaxia_workitems` WRITE; /*!40000 ALTER TABLE `galaxia_workitems` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_workitems` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `messu_archive` -- DROP TABLE IF EXISTS `messu_archive`; CREATE TABLE `messu_archive` ( `msgId` int(14) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', `user_from` varchar(40) NOT NULL default '', `user_to` text, `user_cc` text, `user_bcc` text, `subject` varchar(255) default NULL, `body` text, `hash` varchar(32) default NULL, `replyto_hash` varchar(32) default NULL, `date` int(14) default NULL, `isRead` char(1) default NULL, `isReplied` char(1) default NULL, `isFlagged` char(1) default NULL, `priority` int(2) default NULL, PRIMARY KEY (`msgId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `messu_archive` -- LOCK TABLES `messu_archive` WRITE; /*!40000 ALTER TABLE `messu_archive` DISABLE KEYS */; /*!40000 ALTER TABLE `messu_archive` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `messu_messages` -- DROP TABLE IF EXISTS `messu_messages`; CREATE TABLE `messu_messages` ( `msgId` int(14) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', `user_from` varchar(200) NOT NULL default '', `user_to` text, `user_cc` text, `user_bcc` text, `subject` varchar(255) default NULL, `body` text, `hash` varchar(32) default NULL, `replyto_hash` varchar(32) default NULL, `date` int(14) default NULL, `isRead` char(1) default NULL, `isReplied` char(1) default NULL, `isFlagged` char(1) default NULL, `priority` int(2) default NULL, PRIMARY KEY (`msgId`), KEY `userIsRead` (`user`,`isRead`) ) ENGINE=MyISAM AUTO_INCREMENT=175 DEFAULT CHARSET=latin1; -- -- Dumping data for table `messu_messages` -- LOCK TABLES `messu_messages` WRITE; /*!40000 ALTER TABLE `messu_messages` DISABLE KEYS */; INSERT INTO `messu_messages` VALUES (1,'stevie','admin','stevie','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(2,'hank','admin','hank','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(3,'Edith','admin','Edith','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(4,'Abdul','admin','Abdul','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(5,'Christopher','admin','Christopher','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(6,'Eduard','admin','Eduard','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(7,'Paul','admin','Paul','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(8,'Philippe','admin','Philippe','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(9,'Jorn','admin','Jorn','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(10,'Paula','admin','Paula','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(11,'Douglas','admin','Douglas','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(12,'Alessandro','admin','Alessandro','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(13,'Timothy','admin','Timothy','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(14,'Joseph','admin','Joseph','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'y','n','n',3),(15,'Jean-Paul','admin','Jean-Paul','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(16,'Carl','admin','Carl','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(17,'Eva','admin','Eva','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(18,'Roger','admin','Roger','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(19,'Sherrilynne','admin','Sherrilynne','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(20,'Oliver','admin','Oliver','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(21,'Amy','admin','Amy','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(22,'Lyn','admin','Lyn','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(23,'Henry','admin','Henry','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(24,'Mindy','admin','Mindy','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(25,'Julia','admin','Julia','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(26,'Neil','admin','Neil','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(27,'Boniface','admin','Boniface','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(28,'Nelson','admin','Nelson','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(29,'Justus','admin','Justus','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(30,'Daniel','admin','Daniel','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(31,'Simon','admin','Simon','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(32,'Aamir','admin','Aamir','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(33,'Mwebesa','admin','Mwebesa','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(34,'Jean-Baptiste','admin','Jean-Baptiste','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(35,'Mark','admin','Mark','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(36,'John','admin','John','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(37,'Stephen','admin','Stephen','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(38,'William','admin','William','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(39,'Alex','admin','Alex','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(40,'Afshan','admin','Afshan','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(41,'Burke','admin','Burke','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(42,'Nolwazi','admin','Nolwazi','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(43,'Michael','admin','Michael','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(44,'Michelle','admin','Michelle','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(45,'David','admin','David','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(46,'Nicholas','admin','Nicholas','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(47,'Ernest','admin','Ernest','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(48,'Doreen','admin','Doreen','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(49,'Joel','admin','Joel','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(50,'Titus','admin','Titus','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(51,'Sergio','admin','Sergio','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(52,'Tom','admin','Tom','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(53,'Owen','admin','Owen','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(54,'Tapan','admin','Tapan','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(55,'Brian','admin','Brian','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(56,'Xenophon','admin','Xenophon','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(57,'Chris','admin','Chris','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(58,'Kibet','admin','Kibet','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(59,'Kieran','admin','Kieran','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(60,'Knut','admin','Knut','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(61,'Steven','admin','Steven','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(62,'Bedirhan','admin','Bedirhan','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(63,'Mead','admin','Mead','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(65,'Kendra','admin','Kendra','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(66,'Esther','admin','Esther','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(67,'Arthur','admin','Arthur','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(68,'Adelino','admin','Adelino','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(69,'Ercilia','admin','Ercilia','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(70,'Adel','admin','Adel','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(71,'Renee','admin','Renee','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(72,'Eleni','admin','Eleni','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(73,'Wilford','admin','Wilford','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(74,'Martin','admin','Martin','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(75,'Beatriz','admin','Beatriz','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(76,'Geoffrey','admin','Geoffrey','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(77,'Jose','admin','Jose','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(78,'Celso','admin','Celso','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(79,'George','admin','George','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(80,'Chrispinus','admin','Chrispinus','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(81,'Tsung','admin','Tsung','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361113,'n','n','n',3),(82,'admin','admin','admin','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361140,'n','n','n',3),(174,'admin','Patrick','admin','',NULL,'Trackerfilter','Do you have any examples of using the TrackerFilter with TrackerList? The documentation does not show how to link the following commands:\r\n\r\n{TRACKERFILTER(filters=>1/d:2/d,fields=>3:4:5:6)}{TRACKERFILTER}\r\n{TRACKERLIST(trackerId=>1,fields=>3:4:5:6,showtitle=>y,showdesc=>y,showstatus=>n)}{TRACKERLIST} \r\n\r\nI get the filters and list but no filtering. Thanks for your help.\r\n\r\nPatrick','7cef9c03ac827c1c546950b955bb402b','',1204122656,'n','n','n',3),(84,'mark','admin','mspohr','mark',NULL,'test from tw','','f50ecfb0a2a34d4ee9a4b2c8b1decca6','',1199362090,'n','n','n',3),(85,'Xenophon','mspohr','Xenophon','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889393,'n','n','n',3),(86,'William','mspohr','William','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889393,'n','n','n',3),(87,'Wilford','mspohr','Wilford','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889393,'n','n','n',3),(88,'Tsung','mspohr','Tsung','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889393,'n','n','n',3),(89,'Tom','mspohr','Tom','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889393,'n','n','n',3),(90,'Titus','mspohr','Titus','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(91,'Timothy','mspohr','Timothy','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(92,'Tapan','mspohr','Tapan','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(93,'stevie','mspohr','stevie','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(94,'Steven','mspohr','Steven','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(95,'Stephen','mspohr','Stephen','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(96,'spohrm','mspohr','spohrm','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(97,'Simon','mspohr','Simon','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(98,'Sherrilynne','mspohr','Sherrilynne','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(99,'Sergio','mspohr','Sergio','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(100,'Roger','mspohr','Roger','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(101,'Renee','mspohr','Renee','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(102,'pveltsos','mspohr','pveltsos','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(103,'Philippe','mspohr','Philippe','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(104,'Paula','mspohr','Paula','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(105,'Paul','mspohr','Paul','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(107,'Owen','mspohr','Owen','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(108,'Oliver','mspohr','Oliver','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(109,'olati','mspohr','olati','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(110,'Nolwazi','mspohr','Nolwazi','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(111,'Nicholas','mspohr','Nicholas','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(112,'Nelson','mspohr','Nelson','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(113,'Neil','mspohr','Neil','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(114,'Mwebesa','mspohr','Mwebesa','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(115,'mspohr','mspohr','mspohr','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'y','n','n',3),(116,'Mindy','mspohr','Mindy','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(117,'Michelle','mspohr','Michelle','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(118,'Michael','mspohr','Michael','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(119,'Mead','mspohr','Mead','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(120,'Martin','mspohr','Martin','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(121,'Lyn','mspohr','Lyn','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(122,'knutst','mspohr','knutst','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(123,'Knut','mspohr','Knut','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(124,'Kieran','mspohr','Kieran','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(125,'Kibet','mspohr','Kibet','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(126,'Kendra','mspohr','Kendra','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(127,'Justus','mspohr','Justus','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(128,'Julia','mspohr','Julia','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(129,'Joseph','mspohr','Joseph','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'y','n','n',3),(130,'Jose','mspohr','Jose','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(131,'Jorn','mspohr','Jorn','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(132,'John','mspohr','John','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(133,'Joel','mspohr','Joel','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(134,'Jean-Paul','mspohr','Jean-Paul','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(135,'Jean-Baptiste','mspohr','Jean-Baptiste','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(136,'Henry','mspohr','Henry','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(137,'hank','mspohr','hank','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(138,'George','mspohr','George','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(139,'Geoffrey','mspohr','Geoffrey','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(140,'Eva','mspohr','Eva','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(141,'Esther','mspohr','Esther','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(142,'Ernest','mspohr','Ernest','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(143,'Ercilia','mspohr','Ercilia','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(144,'Eleni','mspohr','Eleni','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(145,'Eduard','mspohr','Eduard','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(146,'Edith','mspohr','Edith','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(147,'Eddie','mspohr','Eddie','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(148,'Douglas','mspohr','Douglas','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(149,'Doreen','mspohr','Doreen','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(150,'David','mspohr','David','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(151,'Daniel','mspohr','Daniel','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(152,'Christopher','mspohr','Christopher','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(153,'Chrispinus','mspohr','Chrispinus','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(154,'Chris','mspohr','Chris','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(155,'Celso','mspohr','Celso','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(156,'Carl','mspohr','Carl','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(157,'Burke','mspohr','Burke','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(158,'Brian','mspohr','Brian','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(159,'Boniface','mspohr','Boniface','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(160,'Bedirhan','mspohr','Bedirhan','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(161,'Beatriz','mspohr','Beatriz','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(162,'Arthur','mspohr','Arthur','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(163,'Amy','mspohr','Amy','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(164,'Alex','mspohr','Alex','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(165,'Alessandro','mspohr','Alessandro','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(166,'akanter','mspohr','akanter','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(167,'Afshan','mspohr','Afshan','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(168,'admin','mspohr','admin','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(169,'Adelino','mspohr','Adelino','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(170,'Adel','mspohr','Adel','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(171,'Abdul','mspohr','Abdul','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(172,'Aamir','mspohr','Aamir','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3); /*!40000 ALTER TABLE `messu_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `messu_sent` -- DROP TABLE IF EXISTS `messu_sent`; CREATE TABLE `messu_sent` ( `msgId` int(14) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', `user_from` varchar(40) NOT NULL default '', `user_to` text, `user_cc` text, `user_bcc` text, `subject` varchar(255) default NULL, `body` text, `hash` varchar(32) default NULL, `replyto_hash` varchar(32) default NULL, `date` int(14) default NULL, `isRead` char(1) default NULL, `isReplied` char(1) default NULL, `isFlagged` char(1) default NULL, `priority` int(2) default NULL, PRIMARY KEY (`msgId`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; -- -- Dumping data for table `messu_sent` -- LOCK TABLES `messu_sent` WRITE; /*!40000 ALTER TABLE `messu_sent` DISABLE KEYS */; INSERT INTO `messu_sent` VALUES (1,'admin','admin','','',NULL,'Nairobi Standards Meeting Website Development','I want to thank all of you who took your valuable time to attend the Global Health Data Standards Workshop in Nairobi last month. We found it very valuable and sensed a real desire to continue the projects and processes started there.\r\n\r\nWe have a new web site that will allow us to continue to collect and provide information and continue the stimulating discussions from the meeting. \r\n\r\nSince our meeting is in collaboration with the Health Metrics Network, they have offered web space to host the continuing discussions.\r\n\r\nhttp://healthmetricsnetwork.info\r\n\r\nEveryone registered for the meeting has already been registered at this web site. You can view most of the content without logging into the site but if you want to add to the site, you will need to Login. Your first name is your login user name and your last name is your password. At your first login, you may want to change this to your favorite easy to remember password.\r\n\r\nAt the current time we have photos from the meeting. Please add any of yours to the \'Image Galleries\' section for the meeting. We also have the presentations from the meeting in the \'File Galleries\'. We are developing wiki pages for the workshop content.\r\n\r\nFinally, let me express our concerns and desire for safety to our friends from Kenya. We do hope that the current political problems are resolved without further violence so that this beautiful country and its talented people can continue to grow and develop to their full potential.\r\n\r\nAll the best from all of us at WHO.\r\n\r\n\r\n','cdb302d54f398daa2b0f11489b07d9a8','',1199361114,'n','n','n',3),(2,'admin','admin','mspohr','mark',NULL,'test from tw','','f50ecfb0a2a34d4ee9a4b2c8b1decca6','',1199362090,'n','n','n',3),(3,'mspohr','mspohr','','',NULL,'New presentations on the Standards website','We have been busy posting the presentations from the Nairobi meeting onto the web site.\r\nYou can access the web site at:\r\nhttp://healthmetricsnetwork.info/\r\n\r\nMany of the Workshop presentations have been loaded as mp3 \'podcasts\'. We will soon have most of these posted as synchronized sound plus powerpoint presentations. This is an excellent resource for review and for your colleagues who did not attend the meeting.\r\n\r\nYou don\'t need to log in to read the site, only login if you want to post something.\r\n\r\nAs always, you are welcome to upload additional resources. Files to the File Galleries, photos to the Image Galleries or try your hand at editing or starting a wiki page on your favorite \'standards\' subject. You can also add comments to each of the presentation pages so that others will know about your opinions of the presentations (hopefully you will find them all useful).\r\n\r\nMore soon,\r\nMark','3559ab0e10726987d6ded0cd59e6f9b5','',1199889394,'n','n','n',3),(4,'mspohr','mspohr','mspohr','',NULL,'test from tw','2','2b0a3db09edd7107e6ff22ce7da33c8d','',1200576901,'n','n','n',3); /*!40000 ALTER TABLE `messu_sent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; CREATE TABLE `sessions` ( `sesskey` char(32) NOT NULL, `expiry` int(11) unsigned NOT NULL, `expireref` varchar(64) default NULL, `data` text NOT NULL, PRIMARY KEY (`sesskey`), KEY `expiry` (`expiry`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_actionlog` -- DROP TABLE IF EXISTS `tiki_actionlog`; CREATE TABLE `tiki_actionlog` ( `action` varchar(255) NOT NULL default '', `lastModif` int(14) default NULL, `pageName` varchar(200) default NULL, `user` varchar(40) default NULL, `ip` varchar(15) default NULL, `comment` varchar(200) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `tiki_actionlog` -- LOCK TABLES `tiki_actionlog` WRITE; /*!40000 ALTER TABLE `tiki_actionlog` DISABLE KEYS */; INSERT INTO `tiki_actionlog` VALUES ('Created',1197910236,'HomePage','admin','0.0.0.0','Tiki initialization'),('Updated',1197985555,'HomePage','admin','158.232.2.8',''),('Updated',1197985616,'HomePage','admin','158.232.2.8',''),('Updated',1198203126,'HomePage','hank','75.178.178.183',''),('Created',1198203384,'WHOStandardsWorkshop2007','hank','75.178.178.183',''),('Created',1198206655,'Day1 ','hank','75.178.178.183',''),('Updated',1198207084,'Day1 ','hank','75.178.178.183',''),('Updated',1199378400,'Day1 ','Douglas','65.40.165.247',''),('Created',1199378526,'KendraWyattPresentation ','Douglas','65.40.165.247',''),('Updated',1199379533,'KendraWyattPresentation ','Douglas','65.40.165.247',''),('Updated',1199380645,'KendraWyattPresentation ','Douglas','65.40.165.247',''),('Updated',1199384149,'Day1 ','hank','65.40.165.247',''),('Updated',1199384343,'Day1 ','hank','65.40.165.247',''),('Created',1199384486,'D1-01Moh ','hank','65.40.165.247',''),('Updated',1199461863,'Day1 ','Douglas','75.178.178.183',''),('Created',1199471329,'IntroductionMark ','Douglas','75.178.178.183',''),('Updated',1199471896,'IntroductionMark ','Douglas','75.178.178.183',''),('Created',1199472407,'D1-02 ','Douglas','75.178.178.183',''),('Updated',1199473448,'D1-02 ','Douglas','75.178.178.183',''),('Updated',1199474143,'Day1 ','hank','65.40.165.247',''),('Updated',1199474409,'D1-02 ','Douglas','75.178.178.183',''),('Updated',1199474459,'WHOStandardsWorkshop2007','hank','65.40.165.247',''),('Updated',1199474511,'D1-02 ','Douglas','75.178.178.183',''),('Updated',1199474654,'WHOStandardsWorkshop2007','hank','65.40.165.247','This page contains links to audio and video archives of the workshop presentations and discussions.'),('Created',1199474757,'D1-03 ','Douglas','75.178.178.183',''),('Updated',1199474899,'D1-03 ','Douglas','75.178.178.183',''),('Created',1199474921,'Day2 ','hank','65.40.165.247',''),('Created',1199474985,'Day3 ','hank','65.40.165.247',''),('Created',1199475124,'Day4 ','hank','65.40.165.247',''),('Created',1199475335,'D1-04 ','Douglas','75.178.178.183',''),('Updated',1199475658,'WHOStandardsWorkshop2007','hank','65.40.165.247',''),('Created',1199476178,'D1-05 ','Douglas','75.178.178.183',''),('Created',1199476670,'D1-06-Presentation-CB','Douglas','75.178.178.183',''),('Created',1199477205,'D1-07-Logistics-MS','Douglas','75.178.178.183',''),('Created',1199477720,'D1-08-Presentation-Discussion-Group-1-Haiti','Douglas','75.178.178.183',''),('Updated',1199479117,'D1-08-Presentation-Discussion-Group-1-Haiti','Douglas','75.178.178.183',''),('Created',1199479409,'D1-09-Discussion-All','Douglas','75.178.178.183',''),('Created',1199479938,'D1-10-Presentation-South-Africa','Douglas','75.178.178.183',''),('Updated',1199549876,'Day1 ','hank','65.40.165.247',''),('Created',1199549986,'NewPage','hank','65.40.165.247',''),('Updated',1199562640,'Day1 ','hank','65.40.165.247',''),('Updated',1199563471,'Day1 ','hank','65.40.165.247',''),('Updated',1199563617,'Day1 ','hank','65.40.165.247',''),('Updated',1199570355,'KendraWyattPresentation ','hank','206.135.142.125',''),('Updated',1199571076,'KendraWyattPresentation ','hank','206.135.142.125',''),('Updated',1199571687,'IntroductionMark ','hank','206.135.142.125',''),('Updated',1199571728,'IntroductionMark ','hank','206.135.142.125',''),('Updated',1199572157,'Day1-02 Welcome from the Kenyan MOH','hank','206.135.142.125',''),('Updated',1199572163,'KendraWyattPresentation ','hank','206.135.142.125',''),('Updated',1199573126,'Day1 ','hank','206.135.142.125',''),('Created',1199573409,'D1-22-After-Action-Review ','hank','206.135.142.125',''),('Updated',1199573606,'Day1 ','hank','206.135.142.125',''),('Updated',1199574038,'D1-03 ','hank','206.135.142.125',''),('Created',1199574047,'D1-21-Discussion-Logistics-MS ','hank','206.135.142.125',''),('Updated',1199574169,'Day1 ','hank','206.135.142.125',''),('Updated',1199574505,'D1-04 ','hank','206.135.142.125',''),('Updated',1199574649,'D1-05 ','hank','206.135.142.125',''),('Updated',1199574689,'D1-21-Discussion-Logistics-MS ','hank','206.135.142.125',''),('Updated',1199574840,'D1-21-Discussion-Logistics-MS ','hank','206.135.142.125',''),('Updated',1199574931,'Day 1-06 Presentation','hank','206.135.142.125',''),('Updated',1199575154,'Day1 ','hank','206.135.142.125',''),('Updated',1199575176,'Day1 ','hank','206.135.142.125',''),('Updated',1199578742,'Day 1-07 Conference Logistics','hank','64.241.37.140',''),('Updated',1199578801,'Day1 ','hank','64.241.37.140',''),('Updated',1199578994,'Day 1-08a Group 1, Haiti','hank','64.241.37.140',''),('Updated',1199579062,'Day1 ','hank','64.241.37.140',''),('Created',1199580756,'D1-08-Presentation-Discussion-Group-2-Malawi ','hank','64.241.37.140',''),('Created',1199581675,'D1-08-Presentation-Discussion-Group-1-Haiti ','hank','64.241.37.140',''),('Updated',1199581764,'KendraWyattPresentation ','hank','64.241.37.140',''),('Updated',1199581829,'Day1 ','hank','64.241.37.140',''),('Created',1199581861,'Day 1-08d Group 4, Zambia','hank','64.241.37.140',''),('Created',1199581905,'D1-11-Presentation-System-Selection-MS ','hank','64.241.37.140',''),('Updated',1199581975,'Day 1-11 Presentation on System Selection','hank','64.241.37.140',''),('Updated',1199582089,'D1-10-Presentation-South-Africa','hank','64.241.37.140',''),('Updated',1199582194,'KendraWyattPresentation ','hank','64.241.37.140',''),('Updated',1199582415,'Day1 ','hank','64.241.37.140',''),('Updated',1199582415,'KendraWyattPresentation ','hank','64.241.37.140',''),('Updated',1199582493,'D1-09-Discussion-All','hank','64.241.37.140',''),('Updated',1199582570,'Day1 ','hank','64.241.37.140',''),('Updated',1199582616,'Day1 ','hank','64.241.37.140',''),('Updated',1199582633,'KendraWyattPresentation ','hank','64.241.37.140',''),('Created',1199582664,'Day 1-13 Conference Logistics and Lunch ','hank','64.241.37.140',''),('Updated',1199582788,'KendraWyattPresentation ','hank','64.241.37.140',''),('Updated',1199582845,'Day 1-13 Conference Logistics and Lunch ','hank','64.241.37.140',''),('Updated',1199582902,'Day1 ','hank','64.241.37.140',''),('Created',1199582929,'Day 1-14 Conference Logistics for the Afternoon ','hank','64.241.37.140',''),('Updated',1199584404,'Day 1-11 Presentation on System Selection','hank','64.241.37.140',''),('Updated',1199584406,'Day 1-14 Conference Logistics for the Afternoon ','hank','64.241.37.140',''),('Created',1199584542,'Day 1-15 Plenary Discussion on System Selection ','hank','64.241.37.140',''),('Updated',1199584856,'KendraWyattPresentation ','hank','64.241.37.140',''),('Updated',1199584893,'Day1 ','hank','64.241.37.140',''),('Created',1199671842,'D1-19-Presentation-HL7-MW ','hank','71.70.217.140',''),('Updated',1199672000,'Day1 ','hank','71.70.217.140',''),('Updated',1199674037,'D1-19-Presentation-HL7-MW ','hank','71.70.217.140',''),('Updated',1199674122,'D1-19-Presentation-HL7-MW ','hank','71.70.217.140',''),('Updated',1199674184,'D1-19-Presentation-HL7-MW ','hank','71.70.217.140',''),('Updated',1199674742,'D1-19-Presentation-HL7-MW ','hank','71.70.217.140',''),('Created',1199675948,'D1-20-Presentation-Data-Exchange-PW ','hank','71.70.217.140',''),('Updated',1199676910,'WHOStandardsWorkshop2007','hank','71.70.217.140',''),('Updated',1199912631,'WHOStandardsWorkshop2007','hank','65.40.165.247',''),('Updated',1199913061,'WHO Data Standards Conference - Day 1','hank','65.40.165.247',''),('Updated',1199913116,'WHO Data Standards Conference - Day 1','hank','65.40.165.247',''),('Updated',1199913159,'WHO Data Standards Conference - Day 1','hank','65.40.165.247',''),('Updated',1199913762,'Day 1-15 Plenary Discussion on System Selection ','hank','65.40.165.247',''),('Created',1199914001,'D1-16-Presentation-Kenya-CJS ','hank','65.40.165.247',''),('Updated',1199914185,'Day 1-16 Country Presentation - Ampath Kenya - Crispinus Simiyu','hank','65.40.165.247',''),('Created',1199914530,'Day 1-16 Country Presentation Mauritania','hank','65.40.165.247',''),('Updated',1199914744,'WHO Data Standards Conference - Day 1','hank','65.40.165.247',''),('Created',1199914818,'Day 1-16 Country Presentation Seychelles ','hank','65.40.165.247',''),('Updated',1199915124,'WHO Data Standards Conference - Day 1','hank','65.40.165.247',''),('Created',1199915314,'Day 1-17 Discussion on Data Standards ','hank','65.40.165.247',''),('Created',1199915432,'Day 1-18 Presentation on Data Use ','hank','65.40.165.247',''),('Updated',1199916230,'WHO Data Standards Conference - Day 1','hank','65.40.165.247',''),('Updated',1199916452,'Day 1-20 Presentation on Data Exchange - Patrick Whitaker','hank','65.40.165.247',''),('Updated',1199916536,'Day 1-21 Afternoon and Evening Logistics - Mark Spohr','hank','65.40.165.247',''),('Updated',1199916698,'Day 1-21 Afternoon and Evening Logistics - Mark Spohr','hank','65.40.165.247',''),('Updated',1199917003,'Day 1-20 Presentation on Data Exchange - Patrick Whitaker','hank','65.40.165.247',''),('Updated',1199917430,'Day 1-01 Introduction and Welcome to the Conference','hank','65.40.165.247',''),('Updated',1199917990,'Day 1-03 Conference Intro','hank','65.40.165.247',''),('Updated',1199918052,'Day 1-04 Conference Intro','hank','65.40.165.247',''),('Updated',1199918298,'WHO Data Standards Conference - Day 1','hank','65.40.165.247',''),('Updated',1199918468,'Day 1-14 Conference Logistics for the Afternoon ','hank','65.40.165.247',''),('Updated',1199918567,'Day 1-13 Conference Logistics and Lunch ','hank','65.40.165.247',''),('Updated',1199918820,'Day 1-11 Presentation on System Selection','hank','65.40.165.247',''),('Updated',1199918898,'Day 1-06 Presentation','hank','65.40.165.247',''),('Updated',1199919393,'Day 1-06 Presentation','hank','65.40.165.247',''),('Updated',1199920860,'Day 1-06 Presentation','hank','65.40.165.247',''),('Updated',1199921175,'Day 1-06 Presentation','hank','65.40.165.247',''),('Updated',1199923652,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199923859,'WHO Global Health Data Standards Workshop 2007','hank','65.40.165.247',''),('Updated',1199925561,'WHO Data Standards Workshop - Day 2','hank','65.40.165.247',''),('Updated',1199925639,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199925669,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199926162,'WHO Data Standards Workshop - Day 2','hank','65.40.165.247',''),('Updated',1199926759,'WHO Global Health Data Standards Workshop 2007','hank','65.40.165.247',''),('Updated',1199926947,'WHO Data Standards Workshop - Day 2','hank','65.40.165.247',''),('Created',1199927007,'Day 2 Workshop Intro','hank','65.40.165.247',''),('Created',1199927042,'Day 2-23 Opening','hank','65.40.165.247',''),('Updated',1199927114,'Day 2-23 Opening','hank','65.40.165.247',''),('Updated',1199927206,'Day 2 Workshop Intro','hank','65.40.165.247',''),('Created',1199927467,'Day 2-24 Country Presentation Uganda','hank','65.40.165.247',''),('Created',1199927945,'Day 2-25 Vocabulary Management','hank','65.40.165.247',''),('Updated',1199927999,'WHO Data Standards Workshop - Day 2','hank','65.40.165.247',''),('Created',1199928856,'Day 2-26 Vocabulary Management','hank','65.40.165.247',''),('Updated',1199928976,'Day 2-26 Vocabulary Management','hank','65.40.165.247',''),('Updated',1199929035,'Day 1-02 Welcome from the Kenyan MOH','hank','65.40.165.247',''),('Updated',1199929232,'Day 1-02 Welcome from the Kenyan MOH','hank','65.40.165.247',''),('Updated',1199929277,'Day 1-03 Conference Intro','hank','65.40.165.247',''),('Updated',1199929328,'Day 1-04 Conference Intro','hank','65.40.165.247',''),('Updated',1199929363,'Day 1-05 Meet And Greet','hank','65.40.165.247',''),('Updated',1199929462,'Day 1-06 Presentation','hank','65.40.165.247',''),('Updated',1199929530,'Day 1-01 Introduction and Welcome to the Conference','hank','65.40.165.247',''),('Updated',1199929547,'Day 1-01 Introduction and Welcome to the Conference','hank','65.40.165.247',''),('Updated',1199929597,'Day 1-02 Welcome from the Kenyan MOH','hank','65.40.165.247',''),('Updated',1199929628,'Day 1-03 Conference Intro','hank','65.40.165.247',''),('Updated',1199929654,'Day 1-04 Conference Intro','hank','65.40.165.247',''),('Updated',1199929687,'Day 1-05 Meet And Greet','hank','65.40.165.247',''),('Updated',1199929768,'Day 1-07 Conference Logistics','hank','65.40.165.247',''),('Updated',1199929808,'Day 1-08a Group 1, Haiti','hank','65.40.165.247',''),('Updated',1199929843,'Day 1-08b Group 2, Malawi','hank','65.40.165.247',''),('Updated',1199929870,'Day 1-08c Group 3, Mozambique','hank','65.40.165.247',''),('Updated',1199929897,'Day 1-08d Group 4, Zambia','hank','65.40.165.247',''),('Updated',1199930017,'Day 1-09 Group Discussion and Summaries from Country Breakout Groups','hank','65.40.165.247',''),('Updated',1199930051,'Day 1-10 Presentation on Flexible Standards Strategies','hank','65.40.165.247',''),('Updated',1199930087,'Day 1-11 Presentation on System Selection','hank','65.40.165.247',''),('Updated',1199930124,'Day 1-13 Conference Logistics and Lunch ','hank','65.40.165.247',''),('Updated',1199930162,'Day 1-12 Presentation on Data Banks','hank','65.40.165.247',''),('Updated',1199930242,'Day 1-14 Conference Logistics for the Afternoon ','hank','65.40.165.247',''),('Updated',1199930272,'Day 1-15 Plenary Discussion on System Selection ','hank','65.40.165.247',''),('Updated',1199930333,'Day 1-16 Country Presentation - Kenya - Crispinus Simiyu','hank','65.40.165.247',''),('Updated',1199930360,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199930422,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199930560,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199930678,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199930737,'Day 1-16 Country Presentation - Mauritania','hank','65.40.165.247',''),('Updated',1199930942,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199931112,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Created',1199931172,'Day 1-16 Country Presentation Kenya Crispinus Simiyu ','hank','65.40.165.247',''),('Updated',1199931235,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199931428,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199931668,'WHO Data Standards Workshop - Day 1','hank','65.40.165.247',''),('Updated',1199931784,'Day 1-16 Country Presentation, Seychelles','hank','65.40.165.247',''),('Updated',1199931815,'Day 1-17 Discussion on Data Standards ','hank','65.40.165.247',''),('Updated',1199931846,'Day 1-18 Presentation on Data Use','hank','65.40.165.247',''),('Updated',1199931887,'Day 1-19 Presentation on HL7 Standards - Mead Walker ','hank','65.40.165.247',''),('Updated',1199931916,'Day 1-20 Presentation on Data Exchange - Patrick Whitaker','hank','65.40.165.247',''),('Updated',1199931949,'Day 1-21 Afternoon and Evening Logistics - Mark Spohr','hank','65.40.165.247',''),('Updated',1199931980,'Day 1-22 After Action Review','hank','65.40.165.247',''),('Updated',1199972693,'HomePage','hank','66.57.41.137',''),('Updated',1199972858,'Day 2 Workshop Intro','hank','66.57.41.137',''),('Updated',1199972890,'Day 2-23 Opening','hank','66.57.41.137',''),('Updated',1199972931,'Day 2-24 Country Presentation - Uganda','hank','66.57.41.137',''),('Updated',1199972969,'Day 2-25 Vocabulary Management','hank','66.57.41.137',''),('Updated',1199972999,'Day 2-26 Vocabulary Management','hank','66.57.41.137',''),('Created',1199978054,'Day 2-28 OpenEHR Archetype','hank','66.57.41.137',''),('Created',1199978115,'Day 2-29 HIS Terminologies','hank','66.57.41.137',''),('Created',1199978177,'Day 2-30 Concept Dictionary','hank','66.57.41.137',''),('Created',1199978228,'Day 2-30 Interface Design','hank','66.57.41.137',''),('Created',1199978279,'Day 2-31 Mobile Forms','hank','66.57.41.137',''),('Created',1199978314,'Day 2-32 Indicator Registry','hank','66.57.41.137',''),('Created',1199978364,'Day 2-33-34 Incentives and Data Quality Discussion','hank','66.57.41.137',''),('Created',1199978488,'Day 2-33 QA-QC Design','hank','66.57.41.137',''),('Created',1199979727,'Day 2-34 Breakout Group Discussion Kenya','hank','66.57.41.137',''),('Updated',1199979895,'WHO Data Standards Workshop - Day 2','hank','66.57.41.137',''),('Updated',1199979944,'WHO Data Standards Workshop - Day 2','hank','66.57.41.137',''),('Created',1199980040,'Day 2-34 Breakout Group Discusssion, Kenya','hank','66.57.41.137',''),('Created',1199980075,'Day 2-36 Country Presentation, Rwanda','hank','66.57.41.137',''),('Created',1199980109,'Day 2-38 Data Quality','hank','66.57.41.137',''),('Created',1199980146,'Day 2 After Action Review','hank','66.57.41.137',''),('Updated',1199997718,'WHO Data Standards Workshop - Day 3','hank','64.241.37.140',''),('Updated',1199998589,'WHO Data Standards Workshop - Day 3','hank','64.241.37.140',''),('Updated',1199998783,'WHO Data Standards Workshop - Day 3','hank','64.241.37.140',''),('Created',1199999926,'Day 3-01 Introduction','hank','64.241.37.140',''),('Created',1200004898,'Day 3-02 Country Presentation, Ethiopia','hank','64.241.37.140',''),('Created',1200004969,'Day 3-03 Country Presentation, South Africa','hank','64.241.37.140',''),('Created',1200005052,'Day 3-04 Country Presentation, South Africa','hank','64.241.37.140',''),('Created',1200005126,'Day 3-06 Country Presentation, Sudan','hank','64.241.37.140',''),('Updated',1200005193,'Day 3-02 Country Presentation, Ethiopia','hank','64.241.37.140',''),('Created',1200005256,'Day 3-07 Country Presentation, Mauritania','hank','64.241.37.140',''),('Created',1200005307,'Day 3-08 Country Presentation, Tanzania','hank','64.241.37.140',''),('Created',1200005356,'Day 3-09 Open Group Discussion','hank','64.241.37.140',''),('Created',1200005446,'Day 3-10 Discussion on Vocabulary Management','hank','64.241.37.140',''),('Created',1200005518,'Day 3-11 Vocabulary Management Fishbowl 1','hank','64.241.37.140',''),('Created',1200005550,'Day 3-12 Vocabulary Management Fishbowl 2','hank','64.241.37.140',''),('Created',1200005577,'Day 3-13 Vocabulary Management Fishbowl 3','hank','64.241.37.140',''),('Created',1200005618,'Day 3-14 Vocabulary Management Fishbowl 4','hank','64.241.37.140',''),('Created',1200005649,'Day 3-15 Vocabulary Management Fishbowl 5','hank','64.241.37.140',''),('Created',1200005692,'Day 3-24 Fishbowl Policy Discussion 1','hank','64.241.37.140',''),('Created',1200005748,'Day 3-25 Fishbowl Policy Discussion 2','hank','64.241.37.140',''),('Created',1200005811,'Day 3-26 Fishbowl Policy Discussion 3','hank','64.241.37.140',''),('Created',1200005978,'Day 3-27 Fishbowl Policy Discussion 4','hank','64.241.37.140',''),('Updated',1200010316,'Day 1-01 Introduction and Welcome to the Conference','hank','71.70.217.140',''),('Updated',1200011673,'WHO Global Health Data Standards Workshop 2007','hank','71.70.217.140',''),('Updated',1200012246,'Day 1-01 Introduction and Welcome to the Conference','hank','71.70.217.140',''),('Updated',1200012400,'Day 1-01 Introduction and Welcome to the Conference','hank','71.70.217.140',''),('Updated',1200012757,'Day 1-01 Introduction and Welcome to the Conference','hank','71.70.217.140',''),('Updated',1200013009,'Day 1-02 Welcome from the Kenyan MOH','hank','71.70.217.140',''),('Updated',1200013498,'Day 1-03 Conference Intro','hank','71.70.217.140',''),('Updated',1200014032,'Day 1-04 Conference Intro','hank','71.70.217.140',''),('Created',1200015499,'Day 3-28 Fishbowl Policy Discussion 5','hank','68.16.180.155',''),('Created',1200015921,'Day 3-29 Fishbowl Policy Discussion 6','hank','68.16.180.155',''),('Created',1200016449,'Day 3-30 Fishbowl Policy Discussion 7','hank','68.16.180.155',''),('Created',1200016484,'Day 3-16 Logistics','hank','68.16.180.155',''),('Created',1200016521,'Day 3-17 Unique Identifiers','hank','68.16.180.155',''),('Created',1200016691,'Day 3-22 Secure Architecture','hank','68.16.180.155',''),('Created',1200016725,'Day 3-23 Fishbowl Policy Logistics','hank','68.16.180.155',''),('Created',1200016766,'Day 3-31 After Action Review','hank','68.16.180.155',''),('Created',1200016804,'Day 3-32 After Action Review','hank','68.16.180.155',''),('Created',1200016861,'Day 3-21 Discussion Security','hank','68.16.180.155',''),('Updated',1200016958,'WHO Data Standards Workshop - Day 3','hank','68.16.180.155',''),('Created',1200017071,'Day 3-18 Presentation on Security and Confidentiality','hank','68.16.180.155',''),('Created',1200017135,'Day 3-19 Presentation on Security and Confidentiality','hank','68.16.180.155',''),('Created',1200017180,'Day 3-20 Presentation on Simplified Security','hank','68.16.180.155',''),('Updated',1200017524,'Day 1-04 Conference Intro','hank','71.70.217.140',''),('Updated',1200017659,'Day 1-04 Conference Intro','hank','71.70.217.140',''),('Updated',1200017821,'Day 1-04 Conference Intro','hank','71.70.217.140',''),('Updated',1200018140,'Day 1-04 Conference Intro','hank','71.70.217.140',''),('Updated',1200018473,'Day 1-05 Meet And Greet','hank','71.70.217.140',''),('Updated',1200018831,'Day 1-06 Presentation','hank','71.70.217.140',''),('Updated',1200019069,'Day 1-07 Conference Logistics','hank','71.70.217.140',''),('Updated',1200019569,'Day 1-06 Presentation','hank','71.70.217.140',''),('Updated',1200019822,'Day 1-08a Group 1, Haiti','hank','71.70.217.140',''),('Updated',1200020041,'Day 1-09 Group Discussion and Summaries from Country Breakout Groups','hank','71.70.217.140',''),('Updated',1200020071,'Day 1-09 Group Discussion and Summaries from Country Breakout Groups','hank','71.70.217.140',''),('Updated',1200020398,'Day 1-10 Presentation on Flexible Standards Strategies','hank','71.70.217.140',''),('Updated',1200020706,'Day 1-11 Presentation on System Selection','hank','71.70.217.140',''),('Updated',1200021345,'Day 1-12 Presentation on Data Banks','hank','71.70.217.140',''),('Updated',1200021608,'Day 1-13 Conference Logistics and Lunch ','hank','71.70.217.140',''),('Updated',1200021832,'Day 1-14 Conference Logistics for the Afternoon ','hank','71.70.217.140',''),('Updated',1200021974,'Day 1-15 Plenary Discussion on System Selection ','hank','71.70.217.140',''),('Updated',1200022245,'Day 1-16 Country Presentation, Kenya - Crispinus Simiyu','hank','71.70.217.140',''),('Updated',1200022395,'Day 1-17 Discussion on Data Standards ','hank','71.70.217.140',''),('Updated',1200022782,'Day 1-18 Presentation on Data Use','hank','71.70.217.140',''),('Updated',1200022798,'Day 1-18 Presentation on Data Use','hank','71.70.217.140',''),('Updated',1200025641,'Day 1-19 Presentation on HL7 Standards - Mead Walker ','hank','71.70.217.140',''),('Updated',1200026099,'Day 1-20 Presentation on Data Exchange - Patrick Whitaker','hank','71.70.217.140',''),('Updated',1200026232,'Day 1-20 Presentation on Data Exchange - Patrick Whitaker','hank','71.70.217.140',''),('Updated',1200026326,'WHO Data Standards Workshop - Day 1','hank','71.70.217.140',''),('Updated',1200026548,'Day 1-21 Afternoon and Evening Logistics - Mark Spohr','hank','71.70.217.140',''),('Updated',1200026805,'Day 1-22 After Action Review','hank','71.70.217.140',''),('Updated',1200026885,'Day 1-22 After Action Review','hank','71.70.217.140',''),('Updated',1200027042,'WHO Data Standards Workshop - Day 1','hank','71.70.217.140',''),('Updated',1200027129,'Day 1-18 Presentation on Data Use','hank','71.70.217.140',''),('Updated',1200027194,'WHO Data Standards Workshop - Day 1','hank','71.70.217.140',''),('Updated',1200027317,'WHO Data Standards Workshop - Day 1','hank','71.70.217.140',''),('Updated',1200027377,'WHO Data Standards Workshop - Day 1','hank','71.70.217.140',''),('Updated',1200027407,'WHO Data Standards Workshop - Day 1','hank','71.70.217.140',''),('Updated',1200027449,'WHO Data Standards Workshop - Day 1','hank','71.70.217.140',''),('Updated',1200027518,'Day 1-18 Presentation on Data Use','hank','71.70.217.140',''),('Updated',1200030171,'WHO Global Health Data Standards Workshop 2007','hank','71.70.217.140',''),('Updated',1200030420,'WHO Global Health Data Standards Workshop 2007','hank','71.70.217.140',''),('Updated',1200030953,'WHO Global Health Data Standards Workshop 2007','hank','71.70.217.140',''),('Updated',1200033173,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('Created',1200033390,'WHO-D4-21-Closing-Song-CB','hank','71.70.217.140',''),('Updated',1200095940,'Day 3-01 Introduction','hank','64.241.37.140',''),('Updated',1200096052,'Day 3-02 Country Presentation, Ethiopia','hank','64.241.37.140',''),('Updated',1200096210,'Day 3-03 Country Presentation, South Africa','hank','64.241.37.140',''),('Updated',1200096339,'Day 3-04 Country Presentation, South Africa','hank','64.241.37.140',''),('Updated',1200096484,'Day 3-06 Country Presentation, Sudan','hank','64.241.37.140',''),('Updated',1200096620,'Day 3-07 Country Presentation, Mauritania','hank','64.241.37.140',''),('Updated',1200096729,'Day 3-08 Country Presentation, Tanzania','hank','64.241.37.140',''),('Updated',1200096890,'Day 3-09 Open Group Discussion','hank','64.241.37.140',''),('Updated',1200097125,'Day 3-10 Discussion on Vocabulary Management','hank','64.241.37.140',''),('Updated',1200097328,'Day 3-11 Vocabulary Management Fishbowl 1','hank','64.241.37.140',''),('Updated',1200097553,'Day 3-12 Vocabulary Management Fishbowl 2','hank','64.241.37.140',''),('Updated',1200097701,'Day 3-13 Vocabulary Management Fishbowl 3','hank','64.241.37.140',''),('Updated',1200097804,'Day 3-14 Vocabulary Management Fishbowl 4','hank','64.241.37.140',''),('Updated',1200097924,'Day 3-15 Vocabulary Management Fishbowl 5','hank','64.241.37.140',''),('Updated',1200098072,'Day 3-16 Logistics','hank','64.241.37.140',''),('Updated',1200098269,'Day 3-17 Unique Identifiers','hank','64.241.37.140',''),('Updated',1200098338,'Day 3-17 Unique Identifiers','hank','64.241.37.140',''),('Updated',1200098733,'Day 3-18 Presentation on Security and Confidentiality','hank','64.241.37.140',''),('Updated',1200098902,'Day 3-18 Presentation on Security and Confidentiality','hank','64.241.37.140',''),('Updated',1200099210,'Day 3-18 Presentation on Security and Confidentiality','hank','64.241.37.140',''),('Updated',1200099467,'Day 3-19 Presentation on Security and Confidentiality','hank','64.241.37.140',''),('Updated',1200099805,'Day 3-19 Presentation on Security and Confidentiality','hank','64.241.37.140',''),('Updated',1200099987,'Day 3-20 Presentation on Simplified Security','hank','64.241.37.140',''),('Updated',1200100120,'Day 3-21 Discussion on Security','hank','64.241.37.140',''),('Updated',1200100509,'Day 3-22 Secure Architecture','hank','64.241.37.140',''),('Updated',1200100795,'Day 3-23 Fishbowl Policy Logistics','hank','64.241.37.140',''),('Updated',1200100909,'Day 3-24 Fishbowl Policy Discussion 1','hank','64.241.37.140',''),('Updated',1200101015,'Day 3-25 Fishbowl Policy Discussion 2','hank','64.241.37.140',''),('Updated',1200101118,'Day 3-26 Fishbowl Policy Discussion 3','hank','64.241.37.140',''),('Updated',1200101352,'Day 3-27 Fishbowl Policy Discussion 4','hank','64.241.37.140',''),('Updated',1200101444,'Day 3-28 Fishbowl Policy Discussion 5','hank','64.241.37.140',''),('Updated',1200101551,'Day 3-29 Fishbowl Policy Discussion 6','hank','64.241.37.140',''),('Updated',1200101679,'Day 3-30 Fishbowl Policy Discussion 7','hank','64.241.37.140',''),('Updated',1200101809,'Day 3-31 After Action Review','hank','64.241.37.140',''),('Updated',1200101899,'Day 3-32 After Action Review','hank','64.241.37.140',''),('Updated',1200255946,'WHO Data Standards Workshop - Day 3','hank','71.70.217.140',''),('Updated',1200256315,'WHO Global Health Data Standards Workshop 2007','hank','71.70.217.140',''),('Updated',1200256606,'WHO Global Health Data Standards Workshop 2007','hank','71.70.217.140',''),('Updated',1200256775,'WHO Global Health Data Standards Workshop 2007','hank','71.70.217.140',''),('Updated',1200257366,'Day 2 Workshop Intro','hank','71.70.217.140',''),('Updated',1200257593,'Day 2-23 Opening','hank','71.70.217.140',''),('Updated',1200257705,'Day 2 Workshop Intro','hank','71.70.217.140',''),('Updated',1200258011,'WHO Data Standards Workshop - Day 2','hank','71.70.217.140',''),('Updated',1200258065,'WHO Data Standards Workshop - Day 2','hank','71.70.217.140',''),('Updated',1200258583,'Day 2-24 Country Presentation - Uganda','hank','71.70.217.140',''),('Updated',1200258892,'Day 2-25 Vocabulary Management','hank','71.70.217.140',''),('Updated',1200258941,'WHO Data Standards Workshop - Day 2','hank','71.70.217.140',''),('Updated',1200259134,'WHO Global Health Data Standards Workshop 2007','hank','71.70.217.140',''),('Updated',1200259502,'Day 2-26 Vocabulary Management','hank','71.70.217.140',''),('Updated',1200260209,'Day 2-28 OpenEHR Archetype','hank','71.70.217.140',''),('Updated',1200260907,'Day 2-29 HIS Terminologies','hank','71.70.217.140',''),('Updated',1200261411,'Day 2-30 Concept Dictionary','hank','71.70.217.140',''),('Updated',1200288187,'Day 2-30 Interface Design','hank','71.70.217.140',''),('Updated',1200288600,'Day 2-31 Mobile Forms','hank','71.70.217.140',''),('Updated',1200289272,'Day 2-32 Indicator Registry','hank','71.70.217.140',''),('Updated',1200289547,'Day 2-33-34 Incentives and Data Quality Discussion','hank','71.70.217.140',''),('Updated',1200289982,'Day 2-33 QA-QC Design','hank','71.70.217.140',''),('Updated',1200290276,'WHO Data Standards Workshop - Day 2','hank','71.70.217.140',''),('Updated',1200290649,'Day 2-34 Breakout Group Discussion, Kenya','hank','71.70.217.140',''),('Updated',1200290842,'Day 2-36 Country Presentation, Rwanda','hank','71.70.217.140',''),('Updated',1200291124,'Day 2-38 Data Quality','hank','71.70.217.140',''),('Updated',1200291409,'Day 2 After Action Review','hank','71.70.217.140',''),('Updated',1200291574,'WHO Data Standards Workshop - Day 2','hank','71.70.217.140',''),('Updated',1200371824,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('Updated',1200372273,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('Created',1200372507,'Day-D4-01-Methodology-Assessment-SY','hank','71.70.217.140',''),('Updated',1200373463,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('Updated',1200374285,'Day-D4-01-Methodology-Assessment-SY','hank','71.70.217.140',''),('Created',1200374647,'Day-D4-02-Methodology-Assessment-SY','hank','71.70.217.140',''),('Updated',1200374963,'Day-D4-02-Methodology-Assessment-SY','hank','71.70.217.140',''),('Created',1200375079,'Day-D4-03-Methodology-Assessment-SY','hank','71.70.217.140',''),('Updated',1200375175,'Day-D4-03-Methodology-Assessment-SY','hank','71.70.217.140',''),('Updated',1200375257,'Day-D4-03-Methodology-Assessment-SY','hank','71.70.217.140',''),('Updated',1200375310,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('Created',1200375351,'DDay-D4-04-Logistics-Instant-Agenda-CB','hank','71.70.217.140',''),('Updated',1200375375,'DDay-D4-04-Logistics-Instant-Agenda-CB','hank','71.70.217.140',''),('Created',1200375654,'Day-D4-05-Conference-Summary-Ethiopia-ESG','hank','71.70.217.140',''),('Created',1200375835,'Day-D4-06-Conference-Summary-Mozambique-ERADA','hank','71.70.217.140',''),('Created',1200375888,'Day-D4-07-Conference-Summary-Malawi-OG','hank','71.70.217.140',''),('Created',1200375913,'Day-D4-08-Conference-Summary-Kenya-EAAO','hank','71.70.217.140',''),('Created',1200375929,'Day-D4-09-Conference-Summary-Sudan','hank','71.70.217.140',''),('Created',1200375972,'Day-D4-10-Conference-Summary-Zambia-NMM','hank','71.70.217.140',''),('Created',1200375988,'Day-D4-11-Conference-Summary-Rwanda-JBK','hank','71.70.217.140',''),('Updated',1200376101,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('Updated',1200376176,'Day-D4-04-Logistics-Instant-Agenda-CB','hank','71.70.217.140',''),('Updated',1200376379,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('Created',1200376412,'Day-D4-12-Conference-Summary-CB','hank','71.70.217.140',''),('Created',1200376472,'Day-D4-13-Presentation-Open-Concept-Collab-PB','hank','71.70.217.140',''),('Created',1200376545,'Day-D4-14-Presentation-Making-Easy-PB','hank','71.70.217.140',''),('Created',1200376561,'Day-D4-15-Conference-Summary','hank','71.70.217.140',''),('Created',1200376578,'Day-D4-16-Presentation-Community-Collaboratory-JDM','hank','71.70.217.140',''),('Created',1200376625,'Day-D4-17-Presentation-Capacity-Development-LH','hank','71.70.217.140',''),('Created',1200376656,'Day-D4-18-Discussion','hank','71.70.217.140',''),('Created',1200376674,'WHO-D4-19-Conference-Action-Items-MS','hank','71.70.217.140',''),('Created',1200376700,'WHO-D4-20-Thank-You-CB','hank','71.70.217.140',''),('Updated',1200452826,'Day-D4-04-Logistics-Instant-Agenda-CB','hank','71.70.217.140',''),('Updated',1200453016,'Day-D4-05-Conference-Summary-Ethiopia-ESG','hank','71.70.217.140',''),('Updated',1200454108,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('Updated',1200454402,'Day-D4-06-Conference-Summary-Mozambique-ERADA','hank','71.70.217.140',''),('Updated',1200454669,'Day-D4-07-Conference-Summary-Malawi-OG','hank','71.70.217.140',''),('Updated',1200454788,'Day-D4-08-Conference-Summary-Kenya-EAAO','hank','71.70.217.140',''),('Updated',1200454903,'Day-D4-09-Conference-Summary-Sudan','hank','71.70.217.140',''),('Updated',1200455010,'Day-D4-10-Conference-Summary-Zambia-NMM','hank','71.70.217.140',''),('Updated',1200455194,'Day-D4-11-Conference-Summary-Rwanda-JBK','hank','71.70.217.140',''),('Updated',1200455332,'Day-D4-12-Conference-Summary-CB','hank','71.70.217.140',''),('Updated',1200455733,'Day-D4-13-Presentation-Open-Concept-Collab-PB','hank','71.70.217.140',''),('Updated',1200459520,'Day-D4-14-Presentation-Making-Easy-PB','hank','71.70.217.140',''),('Updated',1200459588,'Day-D4-11-Conference-Summary-Rwanda-JBK','hank','71.70.217.140',''),('Updated',1200459665,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('Updated',1200459872,'Day-D4-15-Conference-Summary','hank','71.70.217.140',''),('Updated',1200460080,'Day-D4-16-Presentation-Community-Collaboratory-JDM','hank','71.70.217.140',''),('Updated',1200460164,'Day-D4-16-Presentation-Community-Collaboratory-JDM','hank','71.70.217.140',''),('Updated',1200460461,'Day-D4-17-Presentation-Capacity-Development-LH','hank','71.70.217.140',''),('Updated',1200460853,'Day-D4-18-Discussion','hank','71.70.217.140',''),('Updated',1200461006,'WHO-D4-19-Conference-Action-Items-MS','hank','71.70.217.140',''),('Updated',1200461147,'WHO-D4-20-Thank-You-CB','hank','71.70.217.140',''),('Updated',1200461339,'WHO-D4-21-Closing-Song-CB','hank','71.70.217.140',''),('Updated',1200461399,'WHO Data Standards Workshop - Day 4','hank','71.70.217.140',''),('dump created',1201084171,'HomePage','admin','158.232.2.64',''),('created tag: Jan2008',1201084243,'HomePage','admin','158.232.2.64',''),('Updated',1201574168,'WHO Global Health Data Standards Workshop 2007','hank','71.70.217.140',''),('Updated',1201714137,'WHO Global Health Data Standards Workshop 2007','hank','65.40.165.247',''),('Updated',1201714596,'HomePage','hank','65.40.165.247',''),('Updated',1201715784,'HomePage','hank','65.40.165.247',''),('Updated',1201716967,'HomePage','hank','65.40.165.247',''),('Updated',1201717358,'HomePage','hank','65.40.165.247',''),('Updated',1201717440,'HomePage','hank','65.40.165.247',''),('Updated',1201719912,'HomePage','hank','65.40.165.247',''),('Updated',1202134360,'HomePage','mspohr','158.232.2.64',''),('Created',1202134489,'Malawi Health Data Standards Workshop 2008','mspohr','158.232.2.64',''),('Created',1202290544,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202290616,'HomePage','Patrick','158.232.2.8',''),('Updated',1202292097,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202292459,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202292494,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202292915,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202293639,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202293996,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202294022,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202294562,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202294765,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202295628,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202296038,'Standards Matrix','Patrick','158.232.2.8',''),('Updated',1202296367,'HomePage','Patrick','158.232.2.8',''),('Updated',1202296394,'HomePage','Patrick','158.232.2.8',''),('Updated',1202297026,'HomePage','Patrick','158.232.2.8',''),('Updated',1202315430,'HomePage','Patrick','158.232.2.8',''),('Updated',1202315500,'HomePage','Patrick','158.232.2.8',''),('Updated',1202316858,'HomePage','Patrick','158.232.2.8',''),('Updated',1202316931,'HomePage','Patrick','158.232.2.8',''),('Updated',1202316962,'HomePage','Patrick','158.232.2.8',''),('Updated',1202317211,'HomePage','Patrick','158.232.2.8',''),('Updated',1202317265,'HomePage','Patrick','158.232.2.8',''),('Updated',1202317390,'HomePage','Patrick','158.232.2.8',''),('Updated',1202317589,'HomePage','Patrick','158.232.2.8',''),('Updated',1202317718,'HomePage','Patrick','158.232.2.8',''),('Updated',1202317831,'HomePage','Patrick','158.232.2.8',''),('Updated',1202477403,'HomePage','Patrick','158.232.2.8',''),('Updated',1202480128,'HomePage','Patrick','158.232.2.8',''),('Updated',1202480467,'HomePage','Patrick','158.232.2.8',''),('Updated',1202482705,'HomePage','Patrick','158.232.2.8',''),('Updated',1202746612,'HomePage','Patrick','158.232.2.8',''),('Updated',1202746652,'HomePage','Patrick','158.232.2.8',''),('Updated',1202746772,'HomePage','Patrick','158.232.2.8',''),('Updated',1202747297,'HomePage','Patrick','158.232.2.8',''),('Updated',1202747346,'HomePage','Patrick','158.232.2.8',''),('Updated',1202747419,'HomePage','Patrick','158.232.2.8',''),('Updated',1202747566,'HomePage','Patrick','158.232.2.8',''),('Updated',1202747760,'HomePage','Patrick','158.232.2.8',''),('Updated',1202748091,'HomePage','Patrick','158.232.2.8',''),('Updated',1202748207,'HomePage','Patrick','158.232.2.8',''),('Updated',1202748269,'HomePage','Patrick','158.232.2.8',''),('Updated',1202748318,'HomePage','Patrick','158.232.2.8',''),('Updated',1202748378,'HomePage','Patrick','158.232.2.8',''),('Updated',1202748420,'HomePage','Patrick','158.232.2.8',''),('Updated',1202748566,'HomePage','Patrick','158.232.2.8',''),('Updated',1202748641,'HomePage','Patrick','158.232.2.8',''),('Updated',1202937464,'Day 2 Workshop Intro','hank','66.57.41.137',''),('Updated',1202940585,'Day 2-23 Opening','hank','66.57.41.137',''),('Updated',1202940711,'Day 2-24 Country Presentation - Uganda','hank','66.57.41.137',''),('Updated',1202941173,'Day 2-25 Vocabulary Management','hank','66.57.41.137',''),('Updated',1202941223,'Day 2-26 Vocabulary Management','hank','66.57.41.137',''),('Updated',1202941320,'Day 2-28 OpenEHR Archetype','hank','66.57.41.137',''),('Updated',1202941440,'Day 2-29 HIS Terminologies','hank','66.57.41.137',''),('Updated',1202941524,'Day 2-30 Concept Dictionary','hank','66.57.41.137',''),('Updated',1202941562,'Day 2-30 Interface Design','hank','66.57.41.137',''),('Updated',1202941601,'Day 2-31 Mobile Forms','hank','66.57.41.137',''),('Updated',1202941767,'Day 2-32 Indicator Registry','hank','66.57.41.137',''),('Updated',1202941862,'Day 2-33-34 Incentives and Data Quality Discussion','hank','66.57.41.137',''),('Updated',1202941912,'Day 2-33 QA-QC Design','hank','66.57.41.137',''),('Updated',1202941967,'Day 2-34 Breakout Group Discussion, Kenya','hank','66.57.41.137',''),('Updated',1202942017,'Day 2-36 Country Presentation, Rwanda','hank','66.57.41.137',''),('Updated',1202942065,'Day 2-38 Data Quality','hank','66.57.41.137',''),('Updated',1202942124,'Day 2 After Action Review','hank','66.57.41.137',''),('Updated',1202980957,'HomePage','Patrick','158.232.2.64',''),('Updated',1202981066,'HomePage','Patrick','158.232.2.64',''),('Updated',1202981154,'HomePage','Patrick','158.232.2.64',''),('Updated',1202981354,'HomePage','Patrick','158.232.2.64',''),('Updated',1202981357,'HomePage','Patrick','158.232.2.64',''),('Updated',1202981487,'HomePage','Patrick','158.232.2.64',''),('Updated',1202981563,'HomePage','Patrick','158.232.2.64',''),('Updated',1202982010,'HomePage','Patrick','158.232.2.64',''),('Updated',1202982403,'HomePage','Patrick','158.232.2.64',''),('Updated',1202982734,'HomePage','Patrick','158.232.2.64',''),('Updated',1202982791,'HomePage','Patrick','158.232.2.64',''),('Updated',1202982874,'HomePage','Patrick','158.232.2.64',''),('Updated',1202983000,'HomePage','Patrick','158.232.2.64',''),('Updated',1202996431,'HomePage','Patrick','158.232.2.64',''),('Updated',1202996476,'HomePage','Patrick','158.232.2.64',''),('Updated',1202997393,'HomePage','Patrick','158.232.2.64',''),('Updated',1202997480,'HomePage','Patrick','158.232.2.64',''),('Updated',1202997807,'HomePage','Patrick','158.232.2.64',''),('Updated',1202998851,'HomePage','Patrick','158.232.2.64',''),('Created',1203001485,'UserPagePatrick','Patrick','158.232.2.64',''),('Updated',1203001966,'UserPagePatrick','Patrick','158.232.2.64',''),('Updated',1203002005,'UserPagePatrick','Patrick','158.232.2.64',''),('Updated',1203002147,'UserPagePatrick','Patrick','158.232.2.64',''),('Updated',1203002208,'UserPagePatrick','Patrick','158.232.2.64',''),('Updated',1203002357,'UserPagePatrick','Patrick','158.232.2.64',''),('Updated',1203002475,'UserPagePatrick','Patrick','158.232.2.64',''),('Updated',1203002790,'HomePage','Patrick','158.232.2.64',''),('Updated',1203003230,'HomePage','Patrick','158.232.2.64',''),('Updated',1203003311,'HomePage','Patrick','158.232.2.64',''),('Updated',1203003488,'HomePage','Patrick','158.232.2.64',''),('Updated',1203005235,'UserPagePatrick','Patrick','158.232.2.64',''),('Updated',1203014284,'Day 3-01 Introduction','hank','66.57.41.137',''),('Updated',1203014460,'Day 3-02 Country Presentation, Ethiopia','hank','66.57.41.137',''),('Updated',1203014513,'Day 3-03 Country Presentation, South Africa','hank','66.57.41.137',''),('Updated',1203014554,'Day 3-04 Country Presentation, South Africa','hank','66.57.41.137',''),('Updated',1203014826,'Day 3-06 Country Presentation, Sudan','hank','66.57.41.137',''),('Updated',1203014862,'Day 3-07 Country Presentation, Mauritania','hank','66.57.41.137',''),('Updated',1203014896,'Day 3-08 Country Presentation, Tanzania','hank','66.57.41.137',''),('Updated',1203015231,'Day 3-09 Open Group Discussion','hank','66.57.41.137',''),('Updated',1203016925,'Day 3-10 Discussion on Vocabulary Management','hank','66.57.41.137',''),('Updated',1203016967,'Day 3-11 Vocabulary Management Fishbowl 1','hank','66.57.41.137',''),('Updated',1203017010,'Day 3-12 Vocabulary Management Fishbowl 2','hank','66.57.41.137',''),('Updated',1203017046,'Day 3-13 Vocabulary Management Fishbowl 3','hank','66.57.41.137',''),('Updated',1203017132,'Day 3-14 Vocabulary Management Fishbowl 4','hank','66.57.41.137',''),('Updated',1203017171,'Day 3-15 Vocabulary Management Fishbowl 5','hank','66.57.41.137',''),('Updated',1203017207,'Day 3-16 Logistics','hank','66.57.41.137',''),('Updated',1203017240,'Day 3-17 Unique Identifiers','hank','66.57.41.137',''),('Updated',1203017279,'Day 3-18 Presentation on Security and Confidentiality','hank','66.57.41.137',''),('Updated',1203017320,'Day 3-19 Presentation on Security and Confidentiality','hank','66.57.41.137',''),('Updated',1203017365,'Day 3-20 Presentation on Simplified Security','hank','66.57.41.137',''),('Updated',1203017400,'Day 3-21 Discussion on Security','hank','66.57.41.137',''),('Updated',1203017604,'Day 3-22 Secure Architecture','hank','66.57.41.137',''),('Updated',1203017653,'Day 3-23 Fishbowl Policy Logistics','hank','66.57.41.137',''),('Updated',1203017687,'Day 3-24 Fishbowl Policy Discussion 1','hank','66.57.41.137',''),('Updated',1203017721,'Day 3-25 Fishbowl Policy Discussion 2','hank','66.57.41.137',''),('Updated',1203017759,'Day 3-26 Fishbowl Policy Discussion 3','hank','66.57.41.137',''),('Updated',1203017788,'Day 3-27 Fishbowl Policy Discussion 4','hank','66.57.41.137',''),('Updated',1203017827,'Day 3-28 Fishbowl Policy Discussion 5','hank','66.57.41.137',''),('Updated',1203017880,'Day 3-29 Fishbowl Policy Discussion 6','hank','66.57.41.137',''),('Updated',1203017928,'Day 3-30 Fishbowl Policy Discussion 7','hank','66.57.41.137',''),('Updated',1203017970,'Day 3-31 After Action Review','hank','66.57.41.137',''),('Updated',1203018013,'Day 3-32 After Action Review','hank','66.57.41.137',''),('Updated',1203018245,'Day-D4-01-Methodology-Assessment-SY','hank','66.57.41.137',''),('Updated',1203018312,'Day-D4-02-Methodology-Assessment-SY','hank','66.57.41.137',''),('Updated',1203018348,'Day-D4-03-Methodology-Assessment-SY','hank','66.57.41.137',''),('Updated',1203018390,'Day-D4-04-Logistics-Instant-Agenda-CB','hank','66.57.41.137',''),('Updated',1203018424,'Day-D4-05-Conference-Summary-Ethiopia-ESG','hank','66.57.41.137',''),('Updated',1203018463,'Day-D4-06-Conference-Summary-Mozambique-ERADA','hank','66.57.41.137',''),('Updated',1203018548,'Day-D4-07-Conference-Summary-Malawi-OG','hank','66.57.41.137',''),('Updated',1203018589,'Day-D4-08-Conference-Summary-Kenya-EAAO','hank','66.57.41.137',''),('Updated',1203018648,'Day-D4-09-Conference-Summary-Sudan','hank','66.57.41.137',''),('Updated',1203018692,'Day-D4-10-Conference-Summary-Zambia-NMM','hank','66.57.41.137',''),('Updated',1203018729,'Day-D4-11-Conference-Summary-Rwanda-JBK','hank','66.57.41.137',''),('Updated',1203018772,'Day-D4-12-Conference-Summary-CB','hank','66.57.41.137',''),('Updated',1203018819,'Day-D4-13-Presentation-Open-Concept-Collab-PB','hank','66.57.41.137',''),('Updated',1203018864,'WHO Data Standards Workshop - Day 4','hank','66.57.41.137',''),('Updated',1203018914,'Day-D4-14-Presentation-Making-Easy-PB','hank','66.57.41.137',''),('Updated',1203018956,'Day-D4-15-Conference-Summary','hank','66.57.41.137',''),('Updated',1203019001,'Day-D4-16-Presentation-Community-Collaboratory-JDM','hank','66.57.41.137',''),('Updated',1203019051,'Day-D4-17-Presentation-Capacity-Development-LH','hank','66.57.41.137',''),('Updated',1203019086,'Day-D4-18-Discussion','hank','66.57.41.137',''),('Updated',1203019126,'WHO-D4-19-Conference-Action-Items-MS','hank','66.57.41.137',''),('Updated',1203019181,'WHO-D4-20-Thank-You-CB','hank','66.57.41.137',''),('Updated',1203019251,'WHO-D4-21-Closing-Song-CB','hank','66.57.41.137',''),('Updated',1203413228,'HomePage','mspohr','158.232.2.64',''),('Updated',1203413349,'HomePage','mspohr','158.232.2.64',''),('Updated',1204121647,'HomePage','Patrick','158.232.2.64',''),('Updated',1204121766,'HomePage','Patrick','158.232.2.64',''),('Updated',1204121797,'HomePage','Patrick','158.232.2.64',''),('Updated',1204644919,'HomePage','knutst','193.157.187.126',''),('Updated',1204654192,'Day 2-38 Data Quality','hank','204.84.254.146',''),('Updated',1204654408,'Day 2-38 Data Quality','hank','204.84.254.146',''),('Updated',1204654563,'Day 2-38 Data Quality','hank','204.84.254.146',''),('Updated',1204655023,'Day 2-38 Data Quality','hank','204.84.254.146',''),('Updated',1204655542,'Day 2-38 Data Quality','hank','204.84.254.146',''),('Updated',1204655698,'Day 2-38 Data Quality','hank','204.84.254.146',''),('Updated',1204655884,'Day 2-38 Data Quality','hank','204.84.254.146',''),('Updated',1204656106,'Day 2-38 Data Quality','hank','204.84.254.146',''),('Updated',1204657376,'Day 2-38 Data Quality','hank','204.84.254.146',''),('Updated',1204658109,'Day 3-18 Presentation on Security and Confidentiality','hank','204.84.254.157',''),('Updated',1204658177,'Day 3-18 Presentation on Security and Confidentiality','hank','204.84.254.157',''),('Updated',1204690106,'Day 3-01 Introduction','hank','66.57.41.137',''),('Updated',1204690173,'Day 3-01 Introduction','hank','66.57.41.137',''),('Updated',1204690397,'Day 3-02 Country Presentation, Ethiopia','hank','66.57.41.137',''),('Updated',1204691253,'Day 3-03 Country Presentation, South Africa','hank','66.57.41.137',''),('Updated',1204691324,'Day 3-03 Country Presentation, South Africa','hank','66.57.41.137',''),('Updated',1204692391,'Day 3-04 Country Presentation, South Africa','hank','66.57.41.137',''),('Updated',1204692950,'Day 3-06 Country Presentation, Sudan','hank','66.57.41.137',''),('Updated',1204693103,'Day 3-07 Country Presentation, Mauritania','hank','66.57.41.137',''),('Updated',1204694871,'Day 3-08 Country Presentation, Tanzania','hank','66.57.41.137',''),('Updated',1204695054,'Day 3-09 Open Group Discussion','hank','66.57.41.137',''),('Updated',1204695255,'Day 3-10 Discussion on Vocabulary Management','hank','66.57.41.137',''),('Updated',1204727183,'Day 3-11 Vocabulary Management Fishbowl 1','hank','66.57.41.137',''),('Updated',1204727705,'Day 3-12 Vocabulary Management Fishbowl 2','hank','66.57.41.137',''),('Updated',1204728071,'Day 3-13 Vocabulary Management Fishbowl 3','hank','66.57.41.137',''),('Updated',1204728217,'Day 3-14 Vocabulary Management Fishbowl 4','hank','66.57.41.137',''),('Updated',1204728328,'Day 3-15 Vocabulary Management Fishbowl 5','hank','66.57.41.137',''),('Updated',1204728869,'Day 3-15 Vocabulary Management Fishbowl 5','hank','66.57.41.137',''),('Updated',1204729078,'Day 3-16 Logistics','hank','66.57.41.137',''),('Updated',1204729655,'Day 3-17 Unique Identifiers','hank','66.57.41.137',''),('Updated',1204729962,'Day 3-19 Presentation on Security and Confidentiality','hank','66.57.41.137',''),('Updated',1204730005,'Day 3-18 Presentation on Security and Confidentiality','hank','66.57.41.137',''),('Updated',1204730050,'Day 3-19 Presentation on Security and Confidentiality','hank','66.57.41.137',''),('Updated',1204730346,'Day 3-20 Presentation on Simplified Security','hank','66.57.41.137',''),('Updated',1204730826,'Day 3-21 Discussion on Security','hank','66.57.41.137',''),('Updated',1204730895,'Day 3-18 Presentation on Security and Confidentiality','hank','66.57.41.137',''),('Updated',1204731130,'Day 3-22 Secure Architecture','hank','66.57.41.137',''),('Updated',1204731190,'Day 3-22 Secure Architecture','hank','66.57.41.137',''),('Updated',1204731295,'Day 3-23 Fishbowl Policy Logistics','hank','66.57.41.137',''),('Updated',1204731477,'Day 3-24 Fishbowl Policy Discussion 1','hank','66.57.41.137',''),('Updated',1204732087,'Day 3-25 Fishbowl Policy Discussion 2','hank','66.57.41.137',''),('Updated',1204732193,'Day 3-26 Fishbowl Policy Discussion 3','hank','66.57.41.137',''),('Updated',1204732295,'Day 3-27 Fishbowl Policy Discussion 4','hank','66.57.41.137',''),('Updated',1204732415,'Day 3-28 Fishbowl Policy Discussion 5','hank','66.57.41.137',''),('Updated',1204732513,'Day 3-29 Fishbowl Policy Discussion 6','hank','66.57.41.137',''),('Updated',1204732669,'Day 3-30 Fishbowl Policy Discussion 7','hank','66.57.41.137',''),('Updated',1204732782,'Day 3-31 After Action Review','hank','66.57.41.137',''),('Updated',1204732884,'Day 3-32 After Action Review','hank','66.57.41.137',''),('Updated',1204733023,'WHO Data Standards Workshop - Day 3','hank','66.57.41.137',''),('Updated',1204753565,'Day-D4-01-Methodology-Assessment-SY','hank','96.10.21.119',''),('Updated',1204753720,'Day-D4-02-Methodology-Assessment-SY','hank','96.10.21.119',''),('Updated',1204753885,'Day-D4-03-Methodology-Assessment-SY','hank','96.10.21.119',''),('Updated',1204754191,'Day-D4-04-Logistics-Instant-Agenda-CB','hank','96.10.21.119',''),('Updated',1204754426,'Day-D4-05-Conference-Summary-Ethiopia-ESG','hank','96.10.21.119',''),('Updated',1204754820,'Day-D4-06-Conference-Summary-Mozambique-ERADA','hank','96.10.21.119',''),('Updated',1204755008,'Day-D4-07-Conference-Summary-Malawi-OG','hank','96.10.21.119',''),('Updated',1204755107,'Day-D4-08-Conference-Summary-Kenya-EAAO','hank','96.10.21.119',''),('Updated',1204755234,'Day-D4-09-Conference-Summary-Sudan','hank','96.10.21.119',''),('Updated',1204755338,'Day-D4-10-Conference-Summary-Zambia-NMM','hank','96.10.21.119',''),('Updated',1204755473,'Day-D4-11-Conference-Summary-Rwanda-JBK','hank','96.10.21.119',''),('Updated',1204755588,'Day-D4-12-Conference-Summary-CB','hank','96.10.21.119',''),('Updated',1204757096,'Day-D4-13-Presentation-Open-Concept-Collab-PB','hank','75.93.203.40',''),('Updated',1204757216,'Day-D4-14-Presentation-Making-Easy-PB','hank','75.93.203.40',''),('Updated',1204757320,'Day-D4-15-Conference-Summary','hank','75.93.203.40',''),('Updated',1204757418,'Day-D4-16-Presentation-Community-Collaboratory-JDM','hank','75.93.203.40',''),('Updated',1204757622,'Day-D4-17-Presentation-Capacity-Development-LH','hank','75.93.203.40',''),('Updated',1204757876,'Day-D4-18-Discussion','hank','75.93.203.40',''),('Updated',1204757920,'Day-D4-18-Discussion','hank','75.93.203.40',''),('Updated',1204758094,'WHO-D4-19-Conference-Action-Items-MS','hank','75.93.203.40',''),('Updated',1204758395,'WHO-D4-20-Thank-You-CB','hank','75.93.203.40',''),('Updated',1204759009,'WHO-D4-21-Closing-Song-CB','hank','75.93.203.40',''),('Updated',1204824379,'Day 1-01 Introduction and Welcome to the Conference','hank','66.57.41.137',''),('Updated',1204824513,'Day 1-02 Welcome from the Kenyan MOH','hank','66.57.41.137',''),('Updated',1204824624,'Day 1-03 Conference Intro','hank','66.57.41.137',''),('Updated',1204825057,'Day 1-04 Conference Intro','hank','66.57.41.137',''),('Updated',1204825158,'Day 1-05 Meet And Greet','hank','66.57.41.137',''),('Updated',1204825286,'Day 1-06 Presentation','hank','66.57.41.137',''),('Updated',1204825442,'Day 1-07 Conference Logistics','hank','66.57.41.137',''),('Updated',1204827887,'Day 1-08a Group 1, Haiti','hank','66.57.41.137',''),('Updated',1204828998,'Day 1-08b Group 2, Malawi','hank','66.57.41.137',''),('Updated',1204829038,'Day 1-08b Group 2, Malawi','hank','66.57.41.137',''),('Updated',1204829108,'Day 1-08c Group 3, Mozambique','hank','66.57.41.137',''),('Updated',1204829459,'Day 1-09 Group Discussion and Summaries from Country Breakout Groups','hank','66.57.41.137',''),('Updated',1204829588,'Day 1-08d Group 4, Zambia','hank','66.57.41.137',''),('Updated',1204829881,'Day 1-10 Presentation on Flexible Standards Strategies','hank','66.57.41.137',''),('Updated',1204830009,'Day 1-11 Presentation on System Selection','hank','66.57.41.137',''),('Updated',1204830684,'Day 1-13 Conference Logistics and Lunch ','hank','66.57.41.137',''),('Updated',1204830811,'Day 1-12 Presentation on Data Banks','hank','66.57.41.137',''),('Updated',1204831917,'Day 1-14 Conference Logistics for the Afternoon ','hank','66.57.41.137',''),('Updated',1204832006,'Day 1-15 Plenary Discussion on System Selection ','hank','66.57.41.137',''),('Updated',1204832151,'Day 1-16 Country Presentation, Kenya - Crispinus Simiyu','hank','66.57.41.137',''),('Updated',1204832269,'Day 1-16 Country Presentation, Mauritania','hank','66.57.41.137',''),('Updated',1204832299,'Day 1-16 Country Presentation, Seychelles','hank','66.57.41.137',''),('Updated',1204832400,'Day 1-17 Discussion on Data Standards ','hank','66.57.41.137',''),('Updated',1204832851,'Day 1-18 Presentation on Data Use','hank','66.57.41.137',''),('Updated',1204834059,'Day 1-19 Presentation on HL7 Standards - Mead Walker ','hank','66.57.41.137',''),('Updated',1204834196,'Day 1-20 Presentation on Data Exchange - Patrick Whitaker','hank','66.57.41.137',''),('Updated',1204834601,'Day 1-21 Afternoon and Evening Logistics - Mark Spohr','hank','66.57.41.137',''),('Updated',1204834711,'Day 1-22 After Action Review','hank','66.57.41.137',''),('Updated',1205259614,'Day 1-01 Introduction and Welcome to the Conference','hank','71.70.221.135',''),('Updated',1205259706,'Day 1-01 Introduction and Welcome to the Conference','hank','71.70.221.135',''),('Updated',1205260045,'Day 1-01 Introduction and Welcome to the Conference','hank','71.70.221.135',''),('Updated',1205260413,'Day 2-26 Vocabulary Management','hank','71.70.221.135',''),('Updated',1205260665,'Day 2-26 Vocabulary Management','hank','71.70.221.135',''),('Updated',1205260964,'Day 2-28 OpenEHR Archetype','hank','71.70.221.135',''),('Updated',1205261139,'Day 2-28 OpenEHR Archetype','hank','71.70.221.135',''),('Updated',1205261327,'Day 2-29 HIS Terminologies','hank','71.70.221.135',''),('Updated',1205261547,'Day 2-30 Concept Dictionary','hank','71.70.221.135',''),('Updated',1205261832,'Day 2-31 Mobile Forms','hank','71.70.221.135',''),('Updated',1205262608,'Day 2-32 Indicator Registry','hank','71.70.221.135',''),('Updated',1205262804,'Day 2-33-34 Incentives and Data Quality Discussion','hank','71.70.221.135',''),('Updated',1205262992,'Day 2-33 QA-QC Design','hank','71.70.221.135',''),('Updated',1205263218,'Day 2-38 Data Quality','hank','71.70.221.135',''),('Updated',1205263276,'Day 2-38 Data Quality','hank','71.70.221.135',''),('Updated',1205276026,'Day 3-17 Unique Identifiers','hank','71.70.221.135',''),('Updated',1205276377,'Day 3-18 Presentation on Security and Confidentiality','hank','71.70.221.135',''),('Updated',1205276450,'Day 3-18 Presentation on Security and Confidentiality','hank','71.70.221.135',''),('Updated',1205276479,'Day 3-18 Presentation on Security and Confidentiality','hank','71.70.221.135',''),('Updated',1205276612,'Day 3-19 Presentation on Security and Confidentiality','hank','71.70.221.135',''),('Updated',1205276773,'Day 3-20 Presentation on Simplified Security','hank','71.70.221.135',''),('Updated',1205279693,'Day 3-22 Secure Architecture','hank','71.70.221.135',''),('Updated',1205279715,'Day 3-22 Secure Architecture','hank','71.70.221.135',''),('Updated',1205280042,'Day-D4-01-Methodology-Assessment-SY','hank','71.70.221.135',''),('Updated',1205280172,'Day-D4-02-Methodology-Assessment-SY','hank','71.70.221.135',''),('Updated',1205280347,'Day-D4-03-Methodology-Assessment-SY','hank','71.70.221.135',''),('Updated',1205280567,'Day-D4-14-Presentation-Making-Easy-PB','hank','71.70.221.135',''),('Updated',1205281139,'Day-D4-16-Presentation-Community-Collaboratory-JDM','hank','71.70.221.135',''),('Updated',1205281395,'Day-D4-17-Presentation-Capacity-Development-LH','hank','71.70.221.135',''),('Created',1205318701,'UserPagestevie','stevie','158.232.2.32',''),('Updated',1205349656,'Day 2 Workshop Intro','hank','66.57.41.137',''),('Updated',1205351031,'Day 2-23 Opening','hank','66.57.41.137',''),('Updated',1205351221,'Day 2-24 Country Presentation - Uganda','hank','66.57.41.137',''),('Updated',1205352597,'Day 2-25 Vocabulary Management','hank','66.57.41.137',''),('Updated',1205352624,'Day 2-25 Vocabulary Management','hank','66.57.41.137',''),('Updated',1205354783,'Day 2-26 Vocabulary Management','hank','66.57.41.137',''),('Updated',1205355182,'Day 2-28 OpenEHR Archetype','hank','66.57.41.137',''),('Updated',1205355226,'Day 2-26 Vocabulary Management','hank','66.57.41.137',''),('Updated',1205355257,'Day 2-25 Vocabulary Management','hank','66.57.41.137',''),('Updated',1205355303,'Day 2-25 Vocabulary Management','hank','66.57.41.137',''),('Updated',1205355450,'Day 2-29 HIS Terminologies','hank','66.57.41.137',''),('Updated',1205355662,'Day 2-30 Concept Dictionary','hank','66.57.41.137',''),('Updated',1205356324,'Day 2-30 Interface Design','hank','66.57.41.137',''),('Updated',1205356401,'Day 2-30 Interface Design','hank','66.57.41.137',''),('Updated',1205358736,'Day 2-31 Mobile Forms','hank','66.57.41.137',''),('Updated',1205359070,'Day 2-31 Mobile Forms','hank','66.57.41.137',''),('Updated',1205359517,'Day 2-32 Indicator Registry','hank','66.57.41.137',''),('Updated',1205359681,'Day 2-33-34 Incentives and Data Quality Discussion','hank','66.57.41.137',''),('Updated',1205359886,'Day 2-33 QA-QC Design','hank','66.57.41.137',''),('Updated',1205360056,'Day 2-34 Breakout Group Discussion, Kenya','hank','66.57.41.137',''),('Updated',1205360152,'Day 2-36 Country Presentation, Rwanda','hank','66.57.41.137',''),('Updated',1205360315,'Day 2 After Action Review','hank','66.57.41.137',''),('Updated',1205725854,'Day 1-02 Welcome from the Kenyan MOH','hank','71.70.221.135',''),('Updated',1205726295,'Day 1-02 Welcome from the Kenyan MOH','hank','71.70.221.135',''),('Updated',1205726570,'Day 1-06 Presentation','hank','71.70.221.135',''),('Updated',1205726629,'Day 1-06 Presentation','hank','71.70.221.135',''),('Updated',1205726801,'Day 1-12 Presentation on Data Banks','hank','71.70.221.135',''),('Updated',1205726907,'Day 1-18 Presentation on Data Use','hank','71.70.221.135',''),('Updated',1205727028,'Day 1-19 Presentation on HL7 Standards - Mead Walker ','hank','71.70.221.135',''),('Updated',1205727224,'Day 1-20 Presentation on Data Exchange - Patrick Whitaker','hank','71.70.221.135',''),('Updated',1205728721,'Day 1-08a Group 1, Haiti','hank','71.70.221.135',''),('Updated',1207041094,'UserPagePatrick','Patrick','158.232.2.8',''),('Updated',1207041111,'UserPagePatrick','Patrick','158.232.2.8',''),('Updated',1207041415,'HomePage','Patrick','158.232.2.8',''),('Updated',1207041481,'HomePage','Patrick','158.232.2.8',''),('Updated',1207041793,'HomePage','Patrick','158.232.2.8',''),('Updated',1207042045,'HomePage','Patrick','158.232.2.8',''),('Updated',1207042330,'HomePage','Patrick','158.232.2.8',''),('Updated',1207042336,'HomePage','Patrick','158.232.2.8',''),('Updated',1207042720,'HomePage','Patrick','158.232.2.8',''),('Updated',1207042814,'HomePage','Patrick','158.232.2.8',''),('Updated',1207042902,'HomePage','Patrick','158.232.2.8',''),('Updated',1207043184,'HomePage','Patrick','158.232.2.8',''),('Updated',1207043441,'HomePage','Patrick','158.232.2.8',''),('Updated',1207055328,'HomePage','Patrick','158.232.2.8',''),('Updated',1207055689,'HomePage','Patrick','158.232.2.8',''),('Updated',1207055791,'HomePage','Patrick','158.232.2.8',''),('Updated',1207055868,'HomePage','Patrick','158.232.2.8',''),('Updated',1207056281,'HomePage','Patrick','158.232.2.8',''),('Updated',1207056329,'HomePage','Patrick','158.232.2.8',''),('Updated',1207056473,'HomePage','Patrick','158.232.2.8',''),('Updated',1207059391,'HomePage','Patrick','158.232.2.8',''),('Updated',1207059401,'HomePage','Patrick','158.232.2.8',''),('Updated',1207060427,'HomePage','Patrick','158.232.2.8',''),('Updated',1207060590,'HomePage','Patrick','158.232.2.8',''),('Updated',1207060913,'HomePage','Patrick','158.232.2.8',''),('Updated',1207129604,'HomePage','Patrick','158.232.2.8',''),('Updated',1207129645,'HomePage','Patrick','158.232.2.8',''),('Updated',1207129727,'HomePage','Patrick','158.232.2.8',''),('Updated',1207129768,'HomePage','Patrick','158.232.2.8',''),('Updated',1207129839,'HomePage','Patrick','158.232.2.8',''),('Updated',1207141468,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207141884,'HomePage','Patrick','158.232.2.64',''),('Updated',1207141994,'HomePage','Patrick','158.232.2.64',''),('Updated',1207142071,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207142158,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207142443,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207142497,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207142526,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207142551,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207142585,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207142637,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207142674,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207143592,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207143699,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207144725,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207144765,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207144822,'Standards Matrix','Patrick','158.232.2.64',''),('Updated',1207155698,'Standards Matrix','Patrick','65.94.37.182','Removing the list for now. Only filter will remain'),('Updated',1207155864,'Standards Matrix','Patrick','65.94.37.182','removing maximum so all the results are always on one page'),('Updated',1207156194,'Standards Matrix','Patrick','65.94.37.182','I am guessing you want people to click to the name of the organization'),('Updated',1213198564,'HomePage','stevie','158.232.252.4','Health Data Exchange Standards'),('Updated',1214318108,'WHO Global Health Data Standards Workshop 2007','hank','71.70.221.135',''),('Updated',1217940581,'Malawi Health Data Standards Workshop 2008','splinter','158.232.2.64',''),('Updated',1217948595,'Malawi Health Data Standards Workshop 2008','splinter','158.232.2.64',''),('Created',1217948794,'Malawi_2008_Agenda','splinter','158.232.2.64',''),('Updated',1217948878,'Malawi_2008_Agenda','splinter','158.232.2.64','Provisional Agenda'),('Updated',1217948967,'Malawi Health Data Standards Workshop 2008','splinter','158.232.2.64',''),('Updated',1217949005,'Malawi_2008_Agenda','splinter','158.232.2.64',''),('Updated',1217949403,'HomePage','splinter','158.232.2.64',''),('Updated',1217949699,'Malawi Health Data Standards Workshop 2008','splinter','158.232.2.64',''),('Updated',1217949752,'Malawi_2008_Agenda','splinter','158.232.2.64',''),('Updated',1217950110,'Malawi Health Data Standards Workshop 2008','splinter','158.232.2.64',''),('Updated',1218029115,'Malawi Health Data Standards Workshop 2008','splinter','158.232.2.64',''),('Updated',1218029142,'Malawi_2008_Agenda','splinter','158.232.2.64',''),('Created',1218115826,'Malawi_2008_Background','Patrick','158.232.2.6',''),('Updated',1218116108,'Malawi_2008_Background','Patrick','158.232.2.6',''),('Updated',1218116447,'Malawi_2008_Background','Patrick','158.232.2.6',''),('Updated',1218117427,'HomePage','splinter','158.232.2.64',''),('Updated',1218118243,'HomePage','splinter','158.232.2.64',''),('Updated',1218118263,'HomePage','splinter','158.232.2.64',''),('Updated',1218203233,'Malawi Health Data Standards Workshop 2008','splinter','158.232.2.64',''),('Updated',1218203254,'Malawi Health Data Standards Workshop 2008','splinter','158.232.2.64',''),('Updated',1218715908,'HomePage','mspohr','158.232.2.64',''),('Updated',1218715968,'Global Health Data Standards Workshop 2007','mspohr','158.232.2.64',''),('Updated',1218799949,'HomePage','mspohr','158.232.2.64',''),('Updated',1218801017,'Malawi Health Data Standards Workshop 2008','mspohr','158.232.2.64',''),('Changed actual version to 9',1218801171,'Malawi Health Data Standards Workshop 2008','admin','158.232.2.64',''),('Updated',1218803021,'HomePage','mspohr','158.232.2.64',''),('Updated',1218803063,'HomePage','mspohr','158.232.2.64',''),('Updated',1219242304,'Malawi_2008_Background','splinter','158.232.2.64',''),('Created',1219242478,'Background Materials','splinter','158.232.2.64',''),('Updated',1219242528,'Malawi Health Data Standards Workshop 2008','splinter','158.232.2.64',''),('Updated',1219242552,'Malawi_2008_Agenda','splinter','158.232.2.64',''),('Updated',1219243169,'Background Materials','splinter','158.232.2.64',''),('Updated',1219243241,'Background Materials','splinter','158.232.2.64',''),('Updated',1219243319,'Background Materials','splinter','158.232.2.64',''),('Updated',1219243439,'Background Materials','splinter','158.232.2.64',''),('Updated',1219243662,'Background Materials','splinter','158.232.2.64',''),('Updated',1219243774,'Background Materials','splinter','158.232.2.64',''),('Updated',1219243818,'Background Materials','splinter','158.232.2.64',''),('Updated',1219243913,'Background Materials','splinter','158.232.2.64',''),('Updated',1219244006,'Background Materials','splinter','158.232.2.64',''),('Updated',1219244150,'Background Materials','splinter','158.232.2.64',''),('Updated',1219326476,'HomePage','Patrick','158.232.2.6',''),('Updated',1219327389,'HomePage','Patrick','158.232.2.6',''),('Updated',1219327596,'HomePage','Patrick','158.232.2.6',''),('Updated',1219327634,'HomePage','Patrick','158.232.2.6',''),('Updated',1219327794,'HomePage','Patrick','158.232.2.6',''),('Updated',1219328245,'HomePage','Patrick','158.232.2.6',''),('Updated',1219328334,'HomePage','Patrick','158.232.2.6',''),('Updated',1219669206,'Background Materials','splinter','158.232.2.64',''),('Updated',1219669384,'Background Materials','splinter','158.232.2.64',''),('Updated',1221751925,'Background Materials','splinter','158.232.3.66',''),('Updated',1223381245,'Background Materials','splinter','158.232.3.65',''),('Created',1223381417,'Malawi_2008_Registration','splinter','158.232.3.65',''),('Updated',1223381483,'Malawi_2008_Registration','splinter','158.232.3.65',''),('Created',1223384698,'Malawi_thank_you','splinter','158.232.3.65',''),('Updated',1223385072,'Malawi_thank_you','splinter','158.232.3.65',''),('Updated',1223385149,'Malawi_thank_you','splinter','158.232.3.65',''),('Updated',1223385257,'Malawi_thank_you','splinter','158.232.3.65',''),('Updated',1223385303,'Malawi_thank_you','splinter','158.232.3.65',''),('Updated',1223477755,'Malawi_2008_Agenda','splinter','158.232.3.65',''),('Updated',1223477942,'Malawi_2008_Agenda','splinter','158.232.3.65',''),('Updated',1223477990,'Malawi_2008_Agenda','splinter','158.232.3.65',''),('Updated',1223559140,'Malawi Health Data Standards Workshop 2008','splinter','158.232.3.65',''),('Updated',1223559172,'Malawi_2008_Agenda','splinter','158.232.3.65',''),('Updated',1223559201,'Malawi_2008_Registration','splinter','158.232.3.65',''),('Updated',1223559240,'Background Materials','splinter','158.232.3.65',''),('Updated',1223908768,'Malawi_thank_you','splinter','158.232.3.65',''),('Updated',1224508634,'Background Materials','splinter','158.232.3.65',''),('Updated',1224677121,'Background Materials','splinter','158.232.3.65',''),('Updated',1224677246,'Background Materials','splinter','158.232.3.65',''),('Created',1224681529,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1224681679,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1224681709,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Created',1224682009,'Malawi_2008_Venue','splinter','158.232.3.65',''),('Updated',1224682077,'Malawi_2008_Registration','splinter','158.232.3.65',''),('Updated',1224853323,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1225283433,'Malawi_2008_Agenda','splinter','158.232.3.65',''),('Updated',1225283453,'Malawi_2008_Agenda','splinter','158.232.3.65',''),('Updated',1225288012,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1225293019,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1225360744,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1225362242,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1225362757,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1225385530,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1225402466,'Malawi_2008_Presentations','Nate_Heard','216.15.53.58',''),('Updated',1225461357,'Malawi_2008_Agenda','splinter','158.232.3.65',''),('Updated',1225463470,'Malawi_2008_Presentations','splinter','158.232.3.65',''),('Updated',1225465267,'Background Materials','splinter','158.232.3.65',''),('Updated',1226420748,'Malawi Health Data Standards Workshop 2008','splinter','158.232.3.65',''),('Updated',1229444309,'HomePage','splinter','158.232.3.65',''),('Updated',1229444357,'HomePage','splinter','158.232.3.65',''),('Updated',1231166458,'HomePage','splinter','158.232.3.65',''),('Updated',1234432302,'HomePage','splinter','158.232.3.65',''),('Created',1234433359,'Health Services Identifier Workshop','splinter','158.232.3.65',''),('Updated',1234433623,'Health Services Identifier Workshop','splinter','158.232.3.65',''),('Updated',1234433809,'Health Services Identifier Workshop','splinter','158.232.3.65',''),('Created',1234434453,'Health Services Identifier Workshop Agenda','splinter','158.232.3.65',''),('Updated',1234434527,'Health Services Identifier Workshop Agenda','splinter','158.232.3.65',''),('Created',1234434569,'Health Services Identifier Workshop Registration','splinter','158.232.3.65',''),('Created',1234434598,'Health Services Identifier Workshop Venue','splinter','158.232.3.65',''),('Created',1234434670,'Health Services Identifier Workshop Presentations','splinter','158.232.3.65',''),('Created',1234434697,'Health Services Identifier Workshop Background Materials','splinter','158.232.3.65',''),('Updated',1234435424,'Health Services Identifier Workshop Background Materials','splinter','158.232.3.65',''),('Updated',1234436254,'Health Services Identifier Workshop Venue','splinter','158.232.3.65',''),('Updated',1234436280,'Health Services Identifier Workshop Venue','splinter','158.232.3.65',''); /*!40000 ALTER TABLE `tiki_actionlog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_article_types` -- DROP TABLE IF EXISTS `tiki_article_types`; CREATE TABLE `tiki_article_types` ( `type` varchar(50) NOT NULL, `use_ratings` varchar(1) default NULL, `show_pre_publ` varchar(1) default NULL, `show_post_expire` varchar(1) default 'y', `heading_only` varchar(1) default NULL, `allow_comments` varchar(1) default 'y', `show_image` varchar(1) default 'y', `show_avatar` varchar(1) default NULL, `show_author` varchar(1) default 'y', `show_pubdate` varchar(1) default 'y', `show_expdate` varchar(1) default NULL, `show_reads` varchar(1) default 'y', `show_size` char(1) default 'n', `show_topline` char(1) default 'n', `show_subtitle` char(1) default 'n', `show_linkto` char(1) default 'n', `show_image_caption` char(1) default 'n', `show_lang` char(1) default 'n', `creator_edit` varchar(1) default NULL, `comment_can_rate_article` char(1) default NULL, PRIMARY KEY (`type`), KEY `show_pre_publ` (`show_pre_publ`), KEY `show_post_expire` (`show_post_expire`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `tiki_article_types` -- LOCK TABLES `tiki_article_types` WRITE; /*!40000 ALTER TABLE `tiki_article_types` DISABLE KEYS */; INSERT INTO `tiki_article_types` VALUES ('Article',NULL,NULL,'y',NULL,'y','y',NULL,'y','y',NULL,'y','n','n','n','n','n','n',NULL,NULL),('Review','y',NULL,'y',NULL,'y','y',NULL,'y','y',NULL,'y','n','n','n','n','n','n',NULL,NULL),('Event',NULL,NULL,'n',NULL,'y','y',NULL,'y','y',NULL,'y','n','n','n','n','n','n',NULL,NULL),('Classified',NULL,NULL,'n','y','n','y',NULL,'y','y',NULL,'y','n','n','n','n','n','n',NULL,NULL); /*!40000 ALTER TABLE `tiki_article_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_articles` -- DROP TABLE IF EXISTS `tiki_articles`; CREATE TABLE `tiki_articles` ( `articleId` int(8) NOT NULL auto_increment, `topline` varchar(255) default NULL, `title` varchar(80) default NULL, `subtitle` varchar(255) default NULL, `linkto` varchar(255) default NULL, `lang` varchar(16) default NULL, `state` char(1) default 's', `authorName` varchar(60) default NULL, `topicId` int(14) default NULL, `topicName` varchar(40) default NULL, `size` int(12) default NULL, `useImage` char(1) default NULL, `image_name` varchar(80) default NULL, `image_caption` text, `image_type` varchar(80) default NULL, `image_size` int(14) default NULL, `image_x` int(4) default NULL, `image_y` int(4) default NULL, `image_data` longblob, `publishDate` int(14) default NULL, `expireDate` int(14) default NULL, `created` int(14) default NULL, `heading` text, `body` text, `hash` varchar(32) default NULL, `author` varchar(200) default NULL, `nbreads` int(14) default NULL, `votes` int(8) default NULL, `points` int(14) default NULL, `type` varchar(50) default NULL, `rating` decimal(3,2) default NULL, `isfloat` char(1) default NULL, PRIMARY KEY (`articleId`), KEY `title` (`title`), KEY `heading` (`heading`(255)), KEY `body` (`body`(255)), KEY `nbreads` (`nbreads`), KEY `author` (`author`(32)), KEY `topicId` (`topicId`), KEY `publishDate` (`publishDate`), KEY `expireDate` (`expireDate`), KEY `type` (`type`), FULLTEXT KEY `ft` (`title`,`heading`,`body`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tiki_articles` -- LOCK TABLES `tiki_articles` WRITE; /*!40000 ALTER TABLE `tiki_articles` DISABLE KEYS */; INSERT INTO `tiki_articles` VALUES (2,'','Baseline Data Management Assessment Tool','','','','s','zoebrillantes',0,NULL,1671,'n','','','',0,0,0,'',1211359740,1242889200,1211376679,'','A tool might be helpful for countries to develop insight useful to support implementation activities – it should help answer questions like the following: \r\n\r\n\r\nHow much data is collected in my country today?\r\nHow much time does it take to collect this data?\r\nWhat happens to data once it is collected? \r\nWhat reports are generated and where are these reports sent?\r\nHow much data is collected more than once and is it possible to reduce this? \r\nCan forms be combined or simplified to ease the burden on data collection? \r\nAre there forms that are essential that need to be made easier to complete? \r\nWho is supporting or responsible for each data collection instrument? \r\n\r\n\r\n
ĔU8{!\rLҮaVWX1R(($k\n^T\\3\rҷ.]~\'D4O\"X h?,\0Iܓ8/zzI6~d=㹄 7[`~\Z15`?e;<^hpGڌqgf\'zrP=$Q5\n){E!W8\0:6RU mB+1ѭS\0\n,\\4yt{؎Ӵ=pk8\ZQP_#\r{k${EA{Ȱe(GI/}$LqҤ{y~-Lg8vR6}Ъ\'Y-Aݪo_[=3?@\r>qDԬnL|w^dT1Ӳ)gf.rЦOa6?\rT^dqr53%1{_[u\'Aۼ?NP]:R\0`Zg˥K92R a)\"}f\ZbKؿ/d8Qo?Pбj_h\\YL\'+3zbAD\nm,\'npQ3!+\n<9k_][;4g[`eZ{2Qa9:o3AL:o^>dRLÌF2$\'\0oU.yC+_!oNEJr1QzʾoE#aW3*:b}LvdvhBFks%ޔ둝\'vd !kpH.5գF} \r>XY+\nTEq$mq~n<7R=\n6(.C\\hLj8\\\0Bx>F921lףDEc~ˆ%gؓ9IcިcRw;lhl@5pnv7GtZ<كObz~6ڐ26\0гV2X(\ZUKʼnb)6f)ߊP9g?a<4iLcqUVZ`chMi%vPʚa`*~Hۡ>/On\rAW}Gf\' v!\rG`[+[mFBg?ODy4t͆0*&jQ55ule_MfǗ@:u>\0}W].,O>2? d;ށpJ6lj&ڶ!)2`R+νs?@pьlOaxPxuaS:,py0H=ľ_0kpW dDTy\\10AmLyk`\08?ӡOݟ3T;:+wy|f5VK+>?xw~\Z3nEmlx8A@̠_<9Z{ufh= .A*[lVnh0A ;V܈X:jV%m\04TBF02;2r\'5L\'tx(hw<.d;O;Ks9\"<{Bm~n2HTFkI3bu~a&A3^ʿ[MQ4QLn\n<` ;/y曦Y݇B*_vV}18Oy@GtwZOKs\ZyfmX!(&J.J^Dn7H DQ t1T %ssuڳf\\k]&zK k.֏㋍,Wh2X~aT\0\0Y;-&s33iC[u2wThj.Nt2!?H-\0iJGɘC\"w\rU؝ED77HM`m H0v$?ly3ŒQ~w{Z%L5<%Ug=˕ FwZQGAG_i5RgÈK/6?À|B[SG3533[Ec7E_13ieii7VJ:(y6D4$.E:Y-:q>3?n\"ӠXȕ<؆k+PG#KssųiNn<յdG5<*=g7+{\0 D][aglNBdo^\n?5i~؛bv >J. s^b5>bW8.7B|mW\0J!eqpkuQϾ#\0Qk\'#9G@۵+[_\05b3\Z{nE P/tORY2I tpz\rb0d8 17,8~f~k-
az[ұaՁ`[nY7+ ߩaFө( sfgpG,W|DsB6-^(j92qXZs&]_ueJŞh\r/רiO؞s?ӴBj(ڶZƵ# ti$R-}5K\n-ƨlR*rAƮS?{c9,ƛiB=@mD:a+ږf7^[>q<}6+c\rju/n1=YEA>FLm%fK YÏBIX;\"kKz!Ì}7u КF}nѝ[PD:\"*fW >9\Zr5ۤT+{A7W9=lǝqm.脤An]zQ}D}NYgBwޫq =kO>`#<w*Y~^0Hܼto2kUi?&Ț4a^bY]IYL퇦 i6czB.&`\nw.YxE}\0ћ/r)vJkK̴>//<\Z|.](\0ui\Z0|hZ|]#}2ƻ5fCEMp:QwԌ-c+70\nSi`GleJ3uhYs#=wVz:2/>Yߟ5q;]<9D[-|SgwQ\ZfctS*眒8s=Lأ# xh;K|#}pSuYr\ZKCG\\{[e06hSǻd=j_fJoN_bm^Jn\ZY|V=ȕ[dy}x7q4zQn{d耡Y\0 i@ŮrQ$\"г(HL|?YvҺϴ\'UtHѲr+:>\0g?V0j?̕R8&a3t\Z^\\7XEwH&ؐTݔ\0ۏiI!,0$xqp=+C^Op*ՍMp\\DՊ@ýҾ$BH|kbBc\\[e/WhpL?(}tf/h0=)LG(,X74{{kF\Z~.\ng&.8Ef|ߠ2|3^tJny-gC}s䡮Q:$`\nupUxpDPcb !U YEo)uU4_/t~W8\"[RԖ\ZebD/l36#B% 4pȲRנ=)UT2t)Kjdv[\"m[/NF%vCl~7k])8Niu Ә{7V S{QCq\ZJpAk4FnLu-U3.#3S̩`Sz:eźp~e6ҁ!\'_Rq\Z4۬]o|zK4P\0AKqo\"(T9?Z~IsUqQi~2]/WB$-5 ~c!}oy>F\Zn\ntY.:5(Ӗ:Tﯙ̘bYJFː\\ɨԌ9;s2~z
;1H6ؾzZCW;!n^:pJ\'@d0W=J$7B32WO5[X\'*{9FNUPb_bXA1-T+iGLƧhrw:ix^ˀƪơF *q(KxujKGkx1E\nu, o0<$$Leo.()J?Ud2<\'(gÿ$:WyFiMӸB
sZd-c^[.dJ
vn*-(]5D9J*EY\" X~~Ҙ\\$n(_؋¶wX8?NY`q>#{sW,(vPLEՆfq2b]p3!Ͻ%}q~v4Ar@r*\"-/\0\0yD}n.w̠~MngO,\'h\",>7-w[!w\\L&U,Y5-춟0_-50`~X7!O\"}Bmct~]NO0,A>;~hN[dD-7r(;^NT>:U4^]gRl^}.`ǽ99p!\\C9?\nwVɉ1а#y?U\0/$nϤnuvQuF6?£.F!I҃hx @K5yTPM!KxiVfyKf\\#n*ҒA0);sqhk)#q k:/gjkb\"λH/zyx6en\n\0AM{r!mΡ%-1|vs֪[5y9pdZу!:mәkˑŤLܖ-衷78\nepIk)*P3HK|7I$BME LkWɠ5(\n>)!P$e$(#dAWX6O],FkN,O.˷B\rDܺYs`#vP7|n-/W@ai-#\\qAG=0HǶ˿a!UXx~[%kXcM:ȣ\n\\2D,2ߦE\"]\\iAF3\ZP|I|\nFrc5}C~ZX63jlͧ-m5/:h{R\rlwaB>$dѨ\'1\r\\.>Ӷ3(0xjK)YK1lʂxpF6.}oቡIJ:[6\"ԞmNK$
Ӫ[ѳ}2.pSe\0$N\Z1`wKYgn^AO74r8\"ak%mF1rٝȏ6\ntmt+a#ZD:z&uCכֿoĽ OŴܪTrLG(g_غk~<|;.\njمH8Yt(n)ijTm-{nSa9Rzx;*ڱ+gܛi<^t*5Y ۳g9;W3i$ŭqb8E\"%;/e>uIA@A\n9@q|\nB tI&2-AX\0r\'O*IH\"dlY aX)yӿ\\]k-A~4@jK*VRݰ@Twv]gJhlhoK1sԁwDJ&v9UI\'eVp.*g՛0\Z|d~xi}^ѩ;ۉg+µϩ}:BBS|ȎnnS\'{eH<6ĘoLqaDQ?bd_ GS)\"USfήA:kAHa4\'OO%
j9T`+QAgN\0xcF)YLڎ mUYq/QF-UJn-~$nA } DL&$f2r ߰ο=HܹHz´]C__qn4!GfAv#~,6U\rCCGh\\dK7Qs\"Fz=\nk~./eQbSVڍWYcZ\\isőj *.HL:2C%쇡 M7\nLEh3\"T +ӿL682_=\\.H6*GLFӟWt/:kbBˣ>@Ty\ZNpWzD2)js漣\rUܔv+IRՑ|~P\"$\r*-@qwk*uB!\"IJ-4n\0=\ni 4;cPvYr*ّz9A;ĐUbOǀ],lSYd\\{Bzj\ZVJ3VܭۓAoo \re{bFQܦ?BpwBT.-OW #2\ZKE_W6n4ZھUf \'+^},RIԚ6 \0$R\Z뼛R#&O] \nNk^ayПٳs҃9\0Ma([9;OsUصgYgF/^z^f7`|DA#MhƏr\\tIrhRx돞f~0Cv7UY]o$ѫjdWoӸ=jܛ/,&3ea\\bb=o`C9go\r؎8dF:ӹ0]j.\rĆVX9Pyگ&48ŎpdڹuңK3.U26<8\n?r;`G,ߢ*gs霷dpoI:fzD嘷/ɮ\ZeC.śF۫We{w:SSH=3Gҳ0TwķpaՄ\re\r\0&}aE|7\0;hȹiP<N˰\nA3Zhp;f^,mgJgFo_vF.*&|\Zj؎̑;XG2\'+3)/ZuCK`pu3?HRgLz&^isJ&aaU:-L%~\n6s೨\rF8e-RWW}n?T\";RZI&/HxϙB=(0?T!ݱ|s5i\n;`X!7ңX9W.g?\\7͔)1Ʀ6+hT`wkX0Ec+1Mb¼`qVI}F\"َɼU`!%DJv9H㛩\ZVa5xU|a7s2[f$Q>*#1@ĉQy}yj]ktGPa;Ʊ!G4cZ\0G}0kY{Dy5W>6UM3;)y Ue\rp͞8)nAc&keJ gjSmCEƃy{sK2\'TcD_L\"\'td$=I^ʣm9.ਬ\nHxANd\Z)@\r]Hf: X=h~z.٪ƺMYmeGp\nU.?o2uW$^)Ge3&G8JLV/<6d,\nBeJtd4n(t)-[U_Ydk^7+OR}=pFrjR#]*WQK_9+Ut\nf]!d܍Hc]\\M`]fdS]{R.gΈ\\Ƅ0CcR4ו,Țz\'jSǝu\'v}@Hz؈.{`0ݹW9{Ok>v5UXU߂\"BQ>xj)C\"G~n\"g+5:k:[j2,w^;!pZS_j}@@c&`Snק\Z.jR^ռB.F8\'q~?bt;<睒m^,8^7xT\rf/ҠEFGcmYTwWLlGv/}@$RXe%UO97oeMZn`kD d@$YojE;V?\\z1)&tMgRCK&!`L-QaQhXq}k\"H(XjxV#BP\ZI.U&S{DGU\r,ܕ4uɱ\\1fGM^璭~\\^gvd,3.Zi-egMw ,^dz+N.I9[=*ꋓ,ϞŖ\nu ʅkkiB`W?lYRPuNuSO,\ns3]fse \'(Ja,IWxE{]ACV\"ǠEjԶا[Y;5!|d$e<0GW\n`u34QlO~<gtv\04[OҕJC#.h0rϟ@lωgcOOLqfXc`e_;mgkVA\ZvGVApMZ=3~hJ10 \"snNtƱ٘zB[jI ٲU͇3¾a-9e/Q=Jf{6x-f(Yu\'3y\r>2%lP(0Hݾ6z@N\ri#ǜ0s+0uz/+8Rf\'7;% jGf늑%Jg3lNWn`DWuS0rVp6`A?e.d?G{4Ē:ğl\\Q7|j[IسX:\n
duD4qaek;sN<@V8՝,ۆ\0\Z,ܔsn89B_defGJ[k86[ \'ZcAP{X/6p@\"aJۑIoPV__g--$cq?T>v\n:*ih0+O\ne5AU\Zf\rA*ŭ5t9HZaOl!0\Zp\rqރ\rN9\rj)?7笅[uJ\"dXX\r*.Y(R1\':dNDt)6긛M\"_qWqE\0aQ]J=<7r~9gEtuΎvFnT_(GA9+7&բ*1MޢnJ+ۆɄ-Ic6AOyXGcT\r)шSO2PȨ*=`]*L^sԧJ1DeeĠ2}x^엄מ܌<ƣKRs\'Q%^ X\ZdhK\r8\"6:W]+qFU5)*i|\0\rYJv=bh3(bo=go,yLT+kOEWx jK%4ųi]8hOy C}8$_̈́?D%8=~YQHd؎L$a/#RnrchCϿ6|ji,@};.YHvP2Μf5?&P3};micƚo$Nv!|M^q(opojݽ?ƫ$pr`F+_YFʇ!$ݖܲ\\%Z\ZӛoH.ZRi#5cUfJ*_c^!\"f\ni-~\\H`@(pQDH<jl#njY^Z:OO\nn{뢬T:5&q}¸}R\r#iYb8\06YniuD\\dd\\sl({4ʊ $3Q5IHR8-uL+sN1egW(sϥ| }+Db?\\BQlU6K*KyR!7iq5beCa\\̒D&J#3=x}zu?6쇖n>Xr2|`0M^[@s9Nf0;ȧ?*ucG@?$2lvMb-N\rlv$=7;gT~ef*!i7{ش3J_uV=EuLO\\a4Eg~?T\"UM%5eiE@iQ~L~?al\ZuDVc)x\'nӘm\'5*ب\"\"!\Zl|ۄai_~uZ;kGJ}aVuv4J4E\\i1d@5q X\'~86K^Q&m\\hҶhZj3!Mjz8znt%iEZdq. F#AE懅5IJ,+H^p晢f#T+_ɐ5S0\Zx˨ʞK0i*q%L,b\nP7)5ցmgX~Ji\n[#V\Z.o+,,.Pd8M)8~rՍsB]ki\rqoo7%WHZ>^3p+Uw
axʩ[hrɾ-<p!*yKWL>3m:EM1sikdN\nU:@^\naF}}#jテ%9W>uhO%]7վ~3A>[bm)d5UWreՁ;fc,U4XG+$<~o3Z\"d2KVřוϐyvF$\nf(eخ\n|PEsSA8.wQ=N&zH\"OVŶƁ̒uDŽ-t(h/\'xkpaoQ\\گW\'#HE&%\\ȷ5pwp=Ն%{K9N%\'B!SP*g- 6R]HҚ\r8[c_~[}<[C!o},6؝oF9\\ $Ŭj]9\"@} $+zNM}D\'\\.ڽ*© GC{C!ԫ՛H0[WB4)^Ts}0L^>Ym
{U0 1LgXk\Z}d|7ѵUoaK){QQ3CG3uiZ3RViFL75YytoXc1(uLn[8:0m5%#aTy]9=t1^\ZDj/`lʋYt[x|QofהC T[\'~y:~]=2QO\"wÖ[U\0ѐcP(_ӣT3_LoX{D;r{\ndJcY|ש\'03[?8ܟ,T{+lPA/Nh,ᷕ=ǖO@OE3(t[&IBˮF&o)O*6IC@x)>QXZ<\0&ag1у.^,:(OI@i![;M4;CgElA8\nNk㍮s29N&@C$OS?y_vBr@
o>Z)TK}ؖ$Tc{s4|+{H GP#~YUUk+}t)>]͌P*>U2&͌$XH;0|sO*QM|ؠCb*aN)t!WS,eL\\ʏIjS/潠H:p4 >[.cRʙ$)\n18Cbq~Fq/dMqH߆Ig%8.%~a֕H\"Dݝk@gG9NJ}z.YyVEt(Kq!pJ㐵~7GR֢i̼
o70u{-P,<@%PgqsR9P;i(Dz犔*UQFEOmzQ&Djm;D$Zwsl_7Th棺}wGNM1\\:Y ¼h9t:nMzxT%6V\"\n>;hRmW][m./\0iUmzO;r.=\Z\'hU\"Q-/yˏ%+Y:{1pC0(=\"TJڹ\'U!^a1&sP§\0ٛ\0 ZHzxXq\"q%+}DwJ.Da<5 =˳h*?#vݘ͞z59ɘh^M`OG~K3+aD$dk\Z\\IkI uzMDp5BKO\0hl\rtֽD2xaGͬD@Z|%sa-W_;L:PߦV8ikCJk?Weݸ;&0[_sZ-^xy7lJ:. EsV7E a:%3iLmZ,au