function ReplaceGtLt(str)
{
	myStr=new String (str);
	Aux= new String(myStr.replace(/</g,"&lt;"));
	Aux2= Aux.replace(/>/g,"&gt;")

	return Aux2

}