Index: /FCKeditor/trunk/fckeditor.asp
===================================================================
--- /FCKeditor/trunk/fckeditor.asp	(revision 604)
+++ /FCKeditor/trunk/fckeditor.asp	(revision 605)
@@ -139,17 +139,4 @@
 
 		IsCompatible = FCKeditor_IsCompatibleBrowser()
-
-	End Function
-
-	' By Agrotic
-	' On ASP, when converting string to numbers, the number decimal separator is localized
-	' so 5.5 will not work on systems were the separator is "," and vice versa.
-	Private Function ToNumericFormat( numberStr )
-
-		If IsNumeric( "5.5" ) Then
-			ToNumericFormat = Replace( numberStr, ",", ".")
-		Else
-			ToNumericFormat = Replace( numberStr, ".", ",")
-		End If
 
 	End Function
@@ -209,5 +196,5 @@
 
 	If InStr(sAgent, "MSIE") > 0 AND InStr(sAgent, "mac") <= 0  AND InStr(sAgent, "Opera") <= 0 Then
-		iVersion = CInt( ToNumericFormat( Mid(sAgent, InStr(sAgent, "MSIE") + 5, 3) ) )
+		iVersion = CInt( FCKeditor_ToNumericFormat( Mid(sAgent, InStr(sAgent, "MSIE") + 5, 3) ) )
 		FCKeditor_IsCompatibleBrowser = ( iVersion >= 5.5 )
 	ElseIf InStr(sAgent, "Gecko/") > 0 Then
@@ -219,3 +206,18 @@
 
 End Function
+
+
+' By Agrotic
+' On ASP, when converting string to numbers, the number decimal separator is localized
+' so 5.5 will not work on systems were the separator is "," and vice versa.
+Private Function FCKeditor_ToNumericFormat( numberStr )
+
+	If IsNumeric( "5.5" ) Then
+		FCKeditor_ToNumericFormat = Replace( numberStr, ",", ".")
+	Else
+		FCKeditor_ToNumericFormat = Replace( numberStr, ".", ",")
+	End If
+
+End Function
+
 %>
