function cleanUpForEditor(string){
	if(string=='NULL') string='';
  string = string.replace(/\\/gi, "");
	return string;	
}
