/*  Contains the list of Data owner email addresses */

theEmailList = new Object();
theEmailList.SchoolBoardOffices = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.Superintendents = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.SecretaryTreasurers = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.SchoolBoardChairs = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.AboriginalContacts = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.FacilityContacts = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.FinanceContacts = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.SpecialNeedsContacts = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.ExecAdminAssistants = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.CourierAddress = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.TransportationContacts = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.MLAs = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.Comments = 'EDUC.MasterContactList@gov.bc.ca';

theEmailList.SchoolContacts = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.IndependentSchoolContacts = 'EDUC.independentSchoolsOffice@gov.bc.ca,EDUC.MasterContactList@gov.bc.ca';

theEmailList.EducationPartners = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.MofEContacts = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.BCeSIS = 'Andrew.Macauley@gov.bc.ca,EDUC.MasterContactList@gov.bc.ca';
theEmailList.DistributedLearning = 'EDUC.MasterContactList@gov.bc.ca';

theEmailList.Literacy = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.EarlyLearning = 'EDUC.MasterContactList@gov.bc.ca';
theEmailList.InternationalEducation = 'EDUC.MasterContactList@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];
}


