/*  Contains the list of Data owner email addresses */

theEmailList = new Object();
theEmailList.SchoolBoardOffices = 'Mike.Joa@gov.bc.ca';
theEmailList.Superintendents = 'Bal.Sekha@gov.bc.ca';
theEmailList.SecretaryTreasurers = 'Bal.Sekha@gov.bc.ca';
theEmailList.SchoolBoardChairs = 'Bal.Sekha@gov.bc.ca';
theEmailList.AboriginalContacts = 'Nancy.Scott@gov.bc.ca';
theEmailList.FacilityContacts = 'Bal.Sekha@gov.bc.ca';
theEmailList.FinanceContacts = 'Bal.Sekha@gov.bc.ca';
theEmailList.SpecialNeedsContacts = 'Bill.Standeven@gov.bc.ca';
theEmailList.ExecAdminAssistants = 'Bal.Sekha@gov.bc.ca';
theEmailList.CourierAddress = 'Bal.Sekha@gov.bc.ca';
theEmailList.TransportationContacts = 'Bal.Sekha@gov.bc.ca';
theEmailList.MLAs = 'Bal.Sekha@gov.bc.ca';
theEmailList.Comments = 'Bal.Sekha@gov.bc.ca';

theEmailList.SchoolContacts = 'Mike.Joa@gov.bc.ca';
theEmailList.IndependentSchoolContacts = 'EDUC.independentSchoolsOffice@gov.bc.ca,Mike.Joa@gov.bc.ca';

theEmailList.EducationPartners = 'Renee.Wentland@gov.bc.ca,Sandy.J.Martin@gov.bc.ca';
theEmailList.MofEContacts = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.BCeSIS = 'Andrew.Macauley@gov.bc.ca';
theEmailList.DistributedLearning = 'EDUC.DistributedLearning@gov.bc.ca';

theEmailList.Literacy = 'betty.ryland@gov.bc.ca,Johane.LaBonte@gov.bc.ca';
theEmailList.EarlyLearning = 'janet.powell@gov.bc.ca';
theEmailList.InternationalEducation = 'Laura.Wickham@gov.bc.ca';


/* Receives an update type from BigForm.htm and 
   updates the recipient field according to 
   who the data owner is */
function changeEmail (updateType)
{
document.update_form.recipient.value = theEmailList[updateType];
}

