function ContactCollection(zmgr, ztitle, zemail, zphone, zfax, zsuitenum, zstreetaddr, zcity, zprovince, zpostalcode){
	this.mgr = zmgr;
	this.title = ztitle;
	this.email = zemail;
	this.phone = zphone;
	this.fax = zfax;
	this.suitenum = zsuitenum;
	this.streetaddr = zstreetaddr;
	this.city = zcity;
	this.province = zprovince;
	this.postalcode = zpostalcode;
}//end of contact structure

var xcontact = new Array();

function getContactMgr(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].mgr;
	} else {
		return "";
	}//end condition
}//get functions

function getContactTitle(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].title;
	} else {
		return "";
	}//end condition
}//get functions

function getContactEmail(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].email;
	} else {
		return "";
	}//end condition
}//get functions

function getContactPhone(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].phone;
	} else {
		return "";
	}//end condition
}//get functions

function getContactFax(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].fax;
	} else {
		return "";
	}//end condition
}//get functions

function getContactSuiteNum(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].suitenum;
	} else {
		return "";
	}//end condition
}//get functions

function getContactStreetAddr(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].streetaddr;
	} else {
		return "";
	}//end condition
}//get functions

function getContactCity(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].city;
	} else {
		return "";
	}//end condition
}//get functions

function getContactProvince(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].province;
	} else {
		return "";
	}//end condition
}//get functions

function getContactPostalCode(zindex){
	if (xcontact[zindex]){
		return xcontact[zindex].postalcode;
	} else {
		return "";
	}//end condition
}//get functions

//Contact Array:  Branch Manager, Titles/Commissions, Email Contact, Phone, Fax, Suite#, Street Address, City, Province, Postal Code
//Remember to use Character Escape Sequences when Needed... see Documents.

//--- 0=Fort St. John ---
xcontact[0] = new ContactCollection("Sandy Ross", "BCLS\, CLS\, EIT", "information", "(250) 787-0356", "(250) 787-0310", "", "8808 72nd St", "Fort St. John", "BC", "V1J 6M2");
//--- 1=Calgary ---
xcontact[1] = new ContactCollection("Bernie McKenna", "ALS", "information", "(403) 245-4711", "(403) 229-9160", "Suite 450\,", "999 - 8th St SW", "Calgary", "AB", "T2R 1J5");
//--- 2=Edmonton ---
xcontact[2] = new ContactCollection("Craig McBride", "ALS\, CLS", "information", "(780) 451-3420", "(780) 452-7033", "Suite 138\,", "14315 - 118th Ave", "Edmonton", "AB", "T5L 4S6");
//--- 3=Fort McMurray ---
xcontact[3] = new ContactCollection("Mila de Regt", "MSC", "information", "(780) 743-6328", "(780) 743-6376", "",  "10214 Centennial Drive", "Fort McMurray", "AB", "T9H 1Y5");
//--- 4=Grande Prairie ---
xcontact[4] = new ContactCollection("Mark Theuerkauf", "ALS", "information", "(780) 532-0633", "(780) 532-0634", "", "9928 - 111th Ave", "Grande Prairie", "AB", "T8V 4C3");
//--- 5=Lloydminster ---
xcontact[5] = new ContactCollection("Jim Sweeney", "ALS\, SLS\, CLS\, PEng", "information", "(780) 875-8857", "(780) 875-4768", "Suite 116\,", "5704 - 44th St", "Lloydminster", "AB", "T9V 2A1");
//--- 6=Projects Branch in Calgary ---
xcontact[6] = new ContactCollection("Steve Card", "OLS\, CLS\, ALS", "information", "(403) 245-4711", "(403) 229-9160", "Suite 450\,", "999 - 8th St SW", "Calgary", "AB", "T2R 1J5");
//--- 7=Health, Safety & Environment in Edmonton ---
xcontact[7] = new ContactCollection("Darrell Florence", "", "information", "(780) 451-3420", "(780) 452-7033", "Suite 138\,", "14315 - 118th Ave", "Edmonton", "AB", "T5L 4S6");
//--- 8=Calgary Office Assistant Branch Manager
xcontact[8] = new ContactCollection("Craig Hughes", "ALS", "information", "(403) 245-4711", "(403) 229-9160", "Suite 450\,", "999 - 8th St SW", "Calgary", "AB", "T2R 1J5");
//--- 9=Edmonton Office Assistant Branch Manager
xcontact[9] = new ContactCollection("Steve Yanish", "ALS", "information", "(780) 451-3420", "(780) 452-7033", "Suite 138\,", "14315 - 118th Ave", "Edmonton", "AB", "T5L 4S6");
//--- 10=Fort St. John Office Assistant Branch Manager
xcontact[10] = new ContactCollection("Sandy Ross", "BCLS\, CLS\, EIT", "information", "(250) 787-0356", "(250) 787-0310", "", "8808 72nd St", "Fort St. John", "BC", "V1J 6M2");
//--- 11=St. John's. NFLD.
xcontact[11] = new ContactCollection("Jerry Quinlan", "ALS\, NLS", "information", "(709) 722-0564", "(709) 722-0361", "", "6 Duffy Place", "St. John's", "NL", "A1B 4M5");
//--- 12=All Branches
xcontact[12] = new ContactCollection("Jerry Quinlan", "ALS\, NLS", "information", "(709) 722-0564", "(709) 722-0361", "", "6 Duffy Place", "St. John's", "NL", "A1B 4M5");



//alert(xcontact[0].email);


