function School( inName, inCampaignID, inLogoURL, inServiceArea, inDescription, inDegreeList ) { // properties this.name = inName; this.campaignID = inCampaignID; this.logoURL = inLogoURL; this.serviceArea = inServiceArea; this.description = inDescription; // internal structures this.degree_array = inDegreeList; // methods this.getSchoolsForDegreeType = getSchoolsForDegreeType; this.getDegreesForSchool = getDegreesForSchool; this.getDegreeByIndex = getDegreeByIndex; } function getSchoolsForDegreeType( inType ) { //NOT USED var matchedSchools = new Array(); var ar=0; for (var i=0; i