// define variable for site

programTitle = 'Clinical Insights';
programRID = '134';
programCode = 'MMRF1001';

speakerA = 'Speaker A';
speakerAInstitution = 'University or Institution';
speakerALocation = 'Location';
speakerAImage = 'images/blank_head.png';

speakerB = 'Speaker B';
speakerBInstitution = 'University or Institution';
speakerBLocation = 'Location';
speakerBImage = 'images/blank_head.png';

Moderator = 'Moderator';

// automatic function below
// ApplicantID is random number generator for the unique ApplicantID
getApplicantID = function ()
{
     var dateObject = new Date();
     ApplicantID = 'Z' + dateObject.getMonth() + '' + dateObject.getDate() + '' +  dateObject.getTime();
}
getApplicantID();
