	function convertToHTMLIfRequired(c){
		if(c=='<')
			return '&lt;';

		if(c=='>')
			return '&gt;';
	}	