switched doctype to standard compliance mode
[squirrelmail.git] / src / addrbook_popup.php
index 9db01ee068a7e88d128089872c9ab90792e7b3fa..4a9681d0c6ec81d50f8319fce9e42d571d823ed6 100644 (file)
@@ -3,37 +3,43 @@
 /**
  * addrbook_popup.php
  *
- * Copyright (c) 1999-2003 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * Frameset for the JavaScript version of the address book.
  *
- * $Id$
+ * @copyright © 1999-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage addressbook
  */
 
-/* Path for SquirrelMail required files. */
+/**
+ * Path for SquirrelMail required files.
+ * @ignore
+ */
 define('SM_PATH','../');
 
-/* SquirrelMail required files. */
-require_once(SM_PATH . 'include/validate.php');
+/** SquirrelMail required files. */
+include_once(SM_PATH . 'include/validate.php');
 require_once(SM_PATH . 'functions/addressbook.php');
-   
+
 ?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
+  "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd">
 
-<HTML>
-    <HEAD>
-        <TITLE><?php echo "$org_title: " . _("Address Book"); ?></TITLE>
-    </HEAD>
-    <FRAMESET ROWS="60,*" BORDER=0>
-        <FRAME NAME="abookmain"
-               MARGINWIDTH="0"
-               SCROLLING="NO"
-               BORDER="0"
-               SRC="addrbook_search.php?show=form">
-        <FRAME NAME="abookres"
-               MARGINWIDTH="0"
-               BORDER="0"
-              SRC="addrbook_search.php?show=blank">
-    </FRAMESET>
-</HTML>
+<html>
+    <head>
+        <meta name="robots" content="noindex,nofollow">
+        <title><?php echo "$org_title: " . _("Address Book"); ?></title>
+    </head>
+    <frameset rows="60,*" border="0">
+        <frame name="abookmain"
+               marginwidth="0"
+               scrolling="no"
+               border="0"
+               src="addrbook_search.php?show=form" />
+        <frame name="abookres"
+               marginwidth="0"
+               border="0"
+               src="addrbook_search.php?show=blank" />
+    </frameset>
+</html>
\ No newline at end of file