def getDefensiveFantasyPoints(page, team, year):
	fantasyPoints = ScrapingFunctions.getDefensivePtsYds(page)
	fantasyPoints = fantasyPoints + getMiscDefenseFantasyPoints(team[1], year)
	print team[1] + " " + str(fantasyPoints)
	return fantasyPoints