def getSource(source_id):
	strOutput = ""
	for strWord in CSourceManager.getSource(source_id):
		strOutput += str(strWord)
		strOutput += "<br/>"

	return strOutput