Index: /FCKeditor.Java/branches/2.4/src/main/webapp/jsp/sample01.jsp
===================================================================
--- /FCKeditor.Java/branches/2.4/src/main/webapp/jsp/sample01.jsp	(revision 1458)
+++ /FCKeditor.Java/branches/2.4/src/main/webapp/jsp/sample01.jsp	(revision 1459)
@@ -36,13 +36,19 @@
 		</script>
 	</head>
+<%
+FCKeditor oFCKeditor ;
+oFCKeditor = new FCKeditor( request, "EditorDefault" ) ;
+%>
 	<body>
 		<h1>FCKeditor - JSP - Sample 1</h1>
-		This sample displays a normal HTML form with an FCKeditor with full features 
-		enabled.
+		<p>This sample displays a normal HTML form with an FCKeditor with full features enabled.</p>
+		<p>Basic FCKeditor informations:</p>
+		<ul>
+			<li>Browser is compatible: <%out.print(oFCKeditor.isCompatibleBrowser());%></li>
+			<li>Connectector is enabled: <%out.print(oFCKeditor.isConnectorEnabled());%>
+		</ul>
 		<hr>
 		<form action="sampleposteddata.jsp" method="get" target="_blank">
 <%
-FCKeditor oFCKeditor ;
-oFCKeditor = new FCKeditor( request, "EditorDefault" ) ;
 oFCKeditor.setValue( "This is some <strong>sample text</strong>. You are using <a href=\"http://www.fredck.com/fckeditor/\">FCKeditor</a>." );
 out.println( oFCKeditor.create() ) ;
