Added the new configuration options
diff --git a/contiki-c64/conf/www-conf.h b/contiki-c64/conf/www-conf.h
index c58a1d9..bb080db 100644
--- a/contiki-c64/conf/www-conf.h
+++ b/contiki-c64/conf/www-conf.h
@@ -32,18 +32,33 @@
  *
  * This file is part of the Contiki desktop environment
  *
- * $Id: www-conf.h,v 1.1 2003/03/19 16:26:18 adamdunkels Exp $
+ * $Id: www-conf.h,v 1.2 2003/04/05 11:03:49 adamdunkels Exp $
  *
  */
 #ifndef __WWW_CONF_H__
 #define __WWW_CONF_H__
 
+/* The size of the HTML viewing area. */
+#define WWW_CONF_WEBPAGE_WIDTH 36
+#define WWW_CONF_WEBPAGE_HEIGHT 17
+
+/* The size of the "Back" history. */
+#define WWW_CONF_HISTORY_SIZE 4
+
+/* Defines the maximum length of an URL */
 #define WWW_CONF_MAX_URLLEN 100
 
+/* The maxiumum number of widgets (i.e., hyperlinks, form elements) on
+   a page. */
+#define WWW_CONF_MAX_NUMPAGEWIDGETS 20
+
+/* Turns <center> support on or off; must be on for forms to work. */
 #define WWW_CONF_RENDERSTATE 1
+
+/* Toggles support for HTML forms. */
 #define WWW_CONF_FORMS       1
 
-
+/* Maximum lengths for various HTML form parameters. */
 #define WWW_CONF_MAX_FORMACTIONLEN  40
 #define WWW_CONF_MAX_FORMNAMELEN    20
 #define WWW_CONF_MAX_INPUTNAMELEN   20