Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/button.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/button.js	(revision 2770)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/button.js	(revision 2771)
@@ -63,4 +63,5 @@
 				this.editObj = editor.document.createElement( 'input' );
 			}
+			this.getContentElement( 'info', 'txtName' ).focus();
 
 			this.changedAttibutes = new Array();
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/checkbox.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/checkbox.js	(revision 2770)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/checkbox.js	(revision 2771)
@@ -69,4 +69,5 @@
 			}
 
+			this.getContentElement( 'info', 'txtName' ).focus();
 			this.changedAttibutes = new Array();
 		},
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/form.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/form.js	(revision 2770)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/form.js	(revision 2771)
@@ -65,4 +65,5 @@
 			}
 
+			this.getContentElement( 'info', 'txtName' ).focus();
 			this.changedAttibutes = new Array();
 		},
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/hiddenfield.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/hiddenfield.js	(revision 2770)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/hiddenfield.js	(revision 2771)
@@ -68,4 +68,5 @@
 			}
 
+			this.getContentElement( 'info', 'txtName' ).focus();
 			this.changedAttibutes = new Array();
 		},
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/radio.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/radio.js	(revision 2770)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/radio.js	(revision 2771)
@@ -61,5 +61,5 @@
 			/*
 			Check selection.
-			Fill this.editObj if the BUTTON element is selected.
+			Fill this.editObj if the RADIO element is selected.
 			*/
 
@@ -69,4 +69,5 @@
 			}
 
+			this.getContentElement( 'info', 'txtName' ).focus();
 			this.changedAttibutes = new Array();
 		},
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/select.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/select.js	(revision 2770)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/select.js	(revision 2771)
@@ -81,4 +81,5 @@
 				this.editObj = this.getParentEditor().document.createElement( 'select' );
 
+			this.getContentElement( 'info', 'txtName' ).focus();
 			this.changedAttibutes = new Array();
 		},
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textarea.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textarea.js	(revision 2770)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textarea.js	(revision 2771)
@@ -64,4 +64,5 @@
 			}
 
+			this.getContentElement( 'info', 'txtName' ).focus();
 			this.changedAttibutes = new Array();
 		},
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textfield.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textfield.js	(revision 2770)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textfield.js	(revision 2771)
@@ -67,4 +67,5 @@
 			}
 
+			this.getContentElement( 'info', 'txtName' ).focus();
 			this.changedAttibutes = new Array();
 		},
