Adressbook-popup: set link using the template.
[citadel.git] / webcit / addressbook_popup.c
index 887198f574d24d2a4dc9d51d9672c5b1ece91905..72ab054d07a81a9749993a6b8e1f8e72e5899dd7 100644 (file)
 #include "webcit.h"
 
 
-/*
- * Call this right before wDumpContent() on any page which requires the address book popup
- */
-void address_book_popup(void) {
-       /* Open a new div, hidden initially, for address book popups. */
-       wc_printf("</div>\n");  /* End of 'content' div */
-       wc_printf("<div id=\"address_book_popup\" style=\"display:none;\">");
-       wc_printf("<div id=\"address_book_popup_container_div\">");
-       wc_printf("<div id=\"address_book_popup_middle_div\"></div>");
-       wc_printf("<div id=\"address_book_inner_div\"></div>");
-       wc_printf("</div>");
-       /* The 'address_book_popup' div will be closed by wDumpContent() */
-}
-
 /*
  * Address book popup window
  */