def getNoiDung1(self,response):
		hxs = Selector(response)
		a=hxs.xpath("//div[contains(@class,'truyen_text')]//text()")
		a1=hxs.xpath("//p[1]//text()").extract()[0]
		a2=hxs.xpath("//p[2]//text()").extract()[0]
		filename=a1+"-"+a2+".txt"
		try:
			with open(filename,'wb') as thefile:
				for a10 in a:
					print >> thefile,a10.extract().encode('utf-8')
		except:
			thefile1=open('damageLinks.txt','a')
			print>> thefile1,hxs.url()