ho veramente troppe cose da fare

comunque, dov e' il tuo editor wysiwyg? lascia un link, facci vedere il codice
mettiamo che sia una cosa del genere
http://javascript.html.it/articoli/l...tor-wysiwyg/2/

hai questo
codice:
function load(){
   AttivaFrame("editArea").designMode = "On";
}
puo' diventare cosi'
codice:
function load(){
   AttivaFrame("editArea").designMode = "On";
if(document.all && !window.opera){
	editArea.document.onkeydown = function () { 
		if (editArea.event.keyCode == 13) {
			var sel = editArea.document.selection;
			if (sel.type == "Control")
			return;

			var r = sel.createRange(); 
			r.pasteHTML("<br \/>");
			editArea.event.cancelBubble = true; 
			editArea.event.returnValue = false; 

			r.select();
			r.moveEnd("character", 1);
			r.moveStart("character", 1);
			r.collapse(false);

			return false;
		}
	}
}
editArea e' l' id dell' iframe
ciao