function cleanUpForEditor(string){
	if(!string){
		string='';
	}else if(string===""){
		string = '';
	}
	return string;	
}

