Index: wp-admin/css/ie.css
===================================================================
--- wp-admin/css/ie.css	(revision 7185)
+++ wp-admin/css/ie.css	(working copy)
@@ -14,7 +14,7 @@
 }
 
 * html #wpbody {
-	_width: expression(document.documentElement.clientWidth > 962 ? "980px" : "99.9%");
+	_width: expression(document.documentElement.clientWidth > 982 ? "980px" : "99.9%");
 }
 
 * html #poststuff .postarea, * html #poststuff #titlediv {
Index: wp-admin/js/editor.js
===================================================================
--- wp-admin/js/editor.js	(revision 7185)
+++ wp-admin/js/editor.js	(working copy)
@@ -13,8 +13,14 @@
 switchEditors = {
 
     saveCallback : function(el, content, body) {
+    
         document.getElementById(el).style.color = '#fff';
-        return this.pre_wpautop(content);
+        if ( tinyMCE.activeEditor.isHidden() ) 
+            content = document.getElementById(el).value;
+        else
+            content = this.pre_wpautop(content);
+
+        return content;
     },
 
     pre_wpautop : function(content) {
Index: wp-includes/script-loader.php
===================================================================
--- wp-includes/script-loader.php	(revision 7185)
+++ wp-includes/script-loader.php	(working copy)
@@ -33,10 +33,10 @@
 		$visual_editor = apply_filters('visual_editor', array('tiny_mce'));
 		$this->add( 'editor', false, $visual_editor, '20080218' );
 
-		$this->add( 'editor_functions', '/wp-admin/js/editor.js', false, '20080221' );
+		$this->add( 'editor_functions', '/wp-admin/js/editor.js', false, '20080307' );
 
 		// Modify this version when tinyMCE plugins are changed.
-		$mce_version = apply_filters('tiny_mce_version', '20080306');
+		$mce_version = apply_filters('tiny_mce_version', '20080307');
 		$this->add( 'tiny_mce', '/wp-includes/js/tinymce/tiny_mce_config.php', array('editor_functions'), $mce_version );
 
 		$this->add( 'prototype', '/wp-includes/js/prototype.js', false, '1.6');
