Index: /trunk/Ohana/src/libkapa/include/kapa.h
===================================================================
--- /trunk/Ohana/src/libkapa/include/kapa.h	(revision 42940)
+++ /trunk/Ohana/src/libkapa/include/kapa.h	(revision 42941)
@@ -251,4 +251,5 @@
 int KapaSetSection (int fd, KapaSection *section);
 int KapaSetSectionByImage (int fd, KapaSection *section);
+int KapaSetSectionCenterByImage (int fd, KapaSection *section);
 int KapaSelectSection (int fd, char *name);
 int KapaGetSection (int fd, char *name);
Index: /trunk/Ohana/src/libkapa/src/KapaWindow.c
===================================================================
--- /trunk/Ohana/src/libkapa/src/KapaWindow.c	(revision 42940)
+++ /trunk/Ohana/src/libkapa/src/KapaWindow.c	(revision 42941)
@@ -445,4 +445,15 @@
 }
 
+int KapaSetSectionCenterByImage (int fd, KapaSection *section) {
+
+  KiiSendCommand (fd, 4, "CSEC");
+  KiiSendMessage (fd, "%s %6.3f %6.3f ", 
+		  section[0].name, 
+		  section[0].x,
+		  section[0].y);
+  KiiWaitAnswer (fd, "DONE");
+  return (TRUE);
+}
+
 int KapaSectionBG (int fd, char *name, int bg) {
 
