Index: /FCKeditor/trunk/editor/fckdialog.html
===================================================================
--- /FCKeditor/trunk/editor/fckdialog.html	(revision 1566)
+++ /FCKeditor/trunk/editor/fckdialog.html	(revision 1567)
@@ -120,5 +120,5 @@
 				height -= $( 'TitleArea' ).offsetHeight ;
 				height -= $( 'TabsRow' ).offsetHeight ;
-				height -= $( 'DialogButtons' ).offsetHeight ;
+				height -= $( 'PopupButtons' ).offsetHeight ;
 
 				frmMain.style.height = Math.max( height, 0 ) + 'px' ;
@@ -341,5 +341,5 @@
 
 			var target = evt.srcElement || evt.target ;
-			if ( target.id == 'closeButton' || target.className == 'DialogTab' || target.className == 'DialogTabSelected' )
+			if ( target.id == 'closeButton' || target.className == 'PopupTab' || target.className == 'PopupTabSelected' )
 				return ;
 
@@ -422,11 +422,11 @@
 		{
 			if ( sCode == tabCode )
-				$( oTabs[sCode] ).className = 'DialogTabSelected' ;
+				$( oTabs[sCode] ).className = 'PopupTabSelected' ;
 			else
-				$( oTabs[sCode] ).className = 'DialogTab' ;
-		}
-
-		if ( typeof( window.frames["frmMain"].OnDialogTabChange ) == 'function' )
-			window.frames["frmMain"].OnDialogTabChange( tabCode ) ;
+				$( oTabs[sCode] ).className = 'PopupTab' ;
+		}
+
+		if ( typeof( window.frames["frmMain"].OnPopupTabChange ) == 'function' )
+			window.frames["frmMain"].OnPopupTabChange( tabCode ) ;
 	}
 
@@ -447,5 +447,5 @@
 
 		var oDiv = document.createElement( 'DIV' ) ;
-		oDiv.className = 'DialogTab' ;
+		oDiv.className = 'PopupTab' ;
 		oDiv.innerHTML = tabText ;
 		oDiv.TabCode = tabCode ;
@@ -463,7 +463,7 @@
 		{
 			var eTitleArea = $( 'TitleArea' ) ;
-			eTitleArea.className = 'DialogTitle' ;
-
-			oDiv.className = 'DialogTabSelected' ;
+			eTitleArea.className = 'PopupTitle' ;
+
+			oDiv.className = 'PopupTabSelected' ;
 			eTabsRow.style.display = '' ;
 
@@ -484,5 +484,5 @@
 		oTab.style.display = isVisible ? '' : 'none' ;
 
-		if ( ! isVisible && oTab.className == 'DialogTabSelected' )
+		if ( ! isVisible && oTab.className == 'PopupTabSelected' )
 		{
 			for ( var sCode in oTabs )
@@ -729,8 +729,8 @@
 		</script>
 	</head>
-	<body onload="Init();" class="DialogBody">
+	<body onload="Init();" class="PopupBody">
 		<div class="contents" id="contents">
 			<div id="header">
-				<div id="TitleArea" class="DialogTitle DialogTitleBorder">
+				<div id="TitleArea" class="PopupTitle PopupTitleBorder">
 					<script type="text/javascript">
 document.write( Args().Title ) ;
@@ -738,9 +738,9 @@
 					<div id="closeButton" onclick="Cancel();"></div>
 				</div>
-				<div id="TabsRow" class="DialogTabArea" style="display: none">
+				<div id="TabsRow" class="PopupTabArea" style="display: none">
 					<table border="0" cellpadding="0" cellspacing="0" width="100%">
 						<tr id="Tabs">
-							<td class="DialogTabEmptyArea">&nbsp;</td>
-							<td class="DialogTabEmptyArea" width="100%">&nbsp;</td>
+							<td class="PopupTabEmptyArea">&nbsp;</td>
+							<td class="PopupTabEmptyArea" width="100%">&nbsp;</td>
 						</tr>
 					</table>
@@ -748,5 +748,5 @@
 			</div>
 			<div id="innerContents"></div>
-			<div id="DialogButtons" class="DialogButtons">
+			<div id="PopupButtons" class="PopupButtons">
 				<table border="0" cellpadding="0" cellspacing="0">
 					<tr>
Index: /FCKeditor/trunk/editor/skins/default/fck_dialog.css
===================================================================
--- /FCKeditor/trunk/editor/skins/default/fck_dialog.css	(revision 1566)
+++ /FCKeditor/trunk/editor/skins/default/fck_dialog.css	(revision 1567)
@@ -45,5 +45,5 @@
 }
 
-.DialogBody
+.PopupBody
 {
 	height: 100%;
@@ -59,5 +59,5 @@
 }
 
-.DialogTitle
+.PopupTitle
 {
 	font-weight: bold;
@@ -68,5 +68,5 @@
 }
 
-.DialogButtons
+.PopupButtons
 {
 	position: absolute;
@@ -101,10 +101,10 @@
 }
 
-.DialogTitleBorder
+.PopupTitleBorder
 {
 	border-bottom: #d5d59d 1px solid;
 }
 
-.DialogTabArea
+.PopupTabArea
 {
 	color: #737357;
@@ -112,5 +112,5 @@
 }
 
-.DialogTabEmptyArea
+.PopupTabEmptyArea
 {
 	padding-left: 10px;
@@ -118,5 +118,5 @@
 }
 
-.DialogTab, .DialogTabSelected
+.PopupTab, .PopupTabSelected
 {
 	border-right: #d5d59d 1px solid;
@@ -127,5 +127,5 @@
 }
 
-.DialogTab
+.PopupTab
 {
 	margin-top: 1px;
@@ -135,5 +135,5 @@
 }
 
-.DialogTabSelected
+.PopupTabSelected
 {
 	font-weight: bold;
@@ -144,5 +144,5 @@
 }
 
-.DialogSelectionBox
+.PopupSelectionBox
 {
 	border: #ff9933 1px solid !important;
Index: /FCKeditor/trunk/editor/skins/office2003/fck_dialog.css
===================================================================
--- /FCKeditor/trunk/editor/skins/office2003/fck_dialog.css	(revision 1566)
+++ /FCKeditor/trunk/editor/skins/office2003/fck_dialog.css	(revision 1567)
@@ -45,5 +45,5 @@
 }
 
-.DialogBody
+.PopupBody
 {
 	height: 100%;
@@ -59,5 +59,5 @@
 }
 
-.DialogTitle
+.PopupTitle
 {
 	font-weight: bold;
@@ -68,5 +68,5 @@
 }
 
-.DialogButtons
+.PopupButtons
 {
 	position: absolute;
@@ -101,10 +101,10 @@
 }
 
-.DialogTitleBorder
+.PopupTitleBorder
 {
 	border-bottom: #d5d59d 1px solid;
 }
 
-.DialogTabArea
+.PopupTabArea
 {
 	color: #0e3460;
@@ -112,5 +112,5 @@
 }
 
-.DialogTabEmptyArea
+.PopupTabEmptyArea
 {
 	padding-left: 10px ;
@@ -118,5 +118,5 @@
 }
 
-.DialogTab, .DialogTabSelected
+.PopupTab, .PopupTabSelected
 {
 	border-right: #466ca6 1px solid;
@@ -127,5 +127,5 @@
 }
 
-.DialogTab
+.PopupTab
 {
 	margin-top: 1px;
@@ -135,5 +135,5 @@
 }
 
-.DialogTabSelected
+.PopupTabSelected
 {
 	font-weight: bold;
@@ -144,5 +144,5 @@
 }
 
-.DialogSelectionBox
+.PopupSelectionBox
 {
 	border: #1e90ff 1px solid !important;
Index: /FCKeditor/trunk/editor/skins/silver/fck_dialog.css
===================================================================
--- /FCKeditor/trunk/editor/skins/silver/fck_dialog.css	(revision 1566)
+++ /FCKeditor/trunk/editor/skins/silver/fck_dialog.css	(revision 1567)
@@ -45,5 +45,5 @@
 }
 
-.DialogBody
+.PopupBody
 {
 	height: 100%;
@@ -59,5 +59,5 @@
 }
 
-.DialogTitle
+.PopupTitle
 {
 	font-weight: bold;
@@ -68,5 +68,5 @@
 }
 
-.DialogButtons
+.PopupButtons
 {
 	position: absolute;
@@ -101,10 +101,10 @@
 }
 
-.DialogTitleBorder
+.PopupTitleBorder
 {
 	border-bottom: #cec6b5 1px solid;
 }
 
-.DialogTabArea
+.PopupTabArea
 {
 	color: #504845;
@@ -112,5 +112,5 @@
 }
 
-.DialogTabEmptyArea
+.PopupTabEmptyArea
 {
 	padding-left: 10px ;
@@ -118,5 +118,5 @@
 }
 
-.DialogTab, .DialogTabSelected
+.PopupTab, .PopupTabSelected
 {
 	border-right: #cec6b5 1px solid;
@@ -127,5 +127,5 @@
 }
 
-.DialogTab
+.PopupTab
 {
 	margin-top: 1px;
@@ -135,5 +135,5 @@
 }
 
-.DialogTabSelected
+.PopupTabSelected
 {
 	font-weight:bold;
@@ -144,5 +144,5 @@
 }
 
-.DialogSelectionBox
+.PopupSelectionBox
 {
 	border: #a9a9a9 1px solid !important;
