// define variable for site

programTitle = 'Multiple Myeloma Update From the 2010 ASCO Annual Meeting';
programRID = '137';
programCode = 'MMRF1002';


// 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();
