function removeBreaks(textObj) {
	var newText = textObj.value;
	textObj.value = newText.replace(/\n\n/g,"\n");
}
