diff --git a/presentation/lookAndFeel/knowledgeTree/documentmanagement/documentUI.inc b/presentation/lookAndFeel/knowledgeTree/documentmanagement/documentUI.inc
index 1b7d77f..4ac5843 100644
--- a/presentation/lookAndFeel/knowledgeTree/documentmanagement/documentUI.inc
+++ b/presentation/lookAndFeel/knowledgeTree/documentmanagement/documentUI.inc
@@ -35,4 +35,65 @@ function displayDocumentLink($oDocument, $bDisplayFullPath = false) {
$sIconPath .
$sLinkText);
}
+
+/**
+ * Prompts the user for a check in comment and revision type
+ *
+ * @param object the document we're checking in
+ */
+function renderCheckInPage($oDocument) {
+ global $default;
+
+ $sToRender = "
\n";
+
+ $sToRender .= "\n";
+
+ $sToRender .= "\n";
+
+ return $sToRender;
+}
+
+
+/**
+ * Prompts the user for a checkout comment
+ *
+ * @param object the document we're checking out
+ */
+function renderCheckOutPage($oDocument) {
+ global $default;
+
+ $sToRender = "\n";
+
+ return $sToRender;
+}
?>