if (!$entry_timestamp) $entry_timestamp = $item["updated"];
        
                                $entry_timestamp = strtotime($entry_timestamp);
-       
+
+                               if (!$entry_timestamp) continue;
+
                                $entry_title = $item["title"];
                                $entry_link = $item["link"];
-       
+
+                               if (!$entry_title) continue;
+                               if (!$entry_link) continue;
+
                                $entry_content = $item["description"];
                                if (!$entry_content) $entry_content = $item["content"];
        
 
        }
 }
 
+function addFeed() {
+
+       var link = document.getElementById("fadd_link").value;
+       var title = document.getElementById("fadd_title").value;
+
+       if (link.length == 0 || title.length == 0) {
+               notify("Error: all fields must be filled in.");
+       } else {
+               notify("addFeed : " + link + ", " + title);
+       }
+
+}
 
 function init() {
 
 
 
 <table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
 <tr>
-       <td class="header" valign="middle" colspan="1"> 
+       <td class="header" valign="middle" colspan="2"> 
                        Preferences
        </td>
 </tr>
 <tr>
-       <td class="toolbar" valign="middle" colspan="1">        
-               <a class="button">Close</a>
+       <td class="toolbar" valign="middle">
+                <div id="notify"> </div>
+       </td>
+       <td class="toolbar" valign="middle" colspan="2" align="right">  
+               <a href="tt-rss.php" class="button">Return to main</a>
        </td>
 </tr>
 </tr>
-       <td class="content" id="content" valign="top">
+       <td class="content" id="content" valign="top" colspan="2">
                <h2>Feed Configuration</h2>
 
-               <table class="prefAddFeed">
+               <!-- <input type="submit" value="Add feed"> -->
+
+               <!-- <table class="prefAddFeed">
                        <tr><td>Title:</td><td><input id="fadd_title"></td></tr>
                        <tr><td>Link:</td><td><input id="fadd_link"></td></tr>
                        <tr><td colspan="2" align="right">
                                <a class="button" href="javascript:addFeed()">Add feed</a></td></tr>
+               </table> -->
+
+               <table class="prefAddFeed">
+                       <tr><td>Title:</td><td><input id="fadd_title"></td>
+                       <td>Link:</td><td><input id="fadd_link"></td></tr>
+                       <tr><td colspan="4" align="right">
+                               <a class="button" href="javascript:addFeed()">Add feed</a></td></tr>
                </table>
 
-               <!-- <input type="submit" value="Add feed"> -->
-               
                <div id="feeds"> </div>
 
                <hr>
+
        </td>
 </tr>
 <tr>
-       <td colspan="2" id="notify" class="notify">
+       <td colspan="2" class="notify">
                <a href="">Tiny-Tiny RSS</a> v0.1 © 2005 Andrew Dolgov
        </td>
 </td>
 
        /* background-image : url("shadow_top.png");
        background-position : bottom left;
        background-repeat : repeat-x; */
-       padding-right : 5px;
+       padding-right : 10px;
+       padding-left : 10px;
        font-size : small;
-       text-align : right;
+}
+
+#notify {
+       font-weight : bold;
+       border : 1px solid #c0c0c0;
+       font-size : small;
+       display : block;
+       background : white;
+       -moz-border-radius : 5px;
+       padding : 3px 10px 3px 10px;
+       width : 300px;
 }
 
 table.main td.header {
-       font-size : 18pt;
+       font-size : 21pt;
        background-color : #f0f0f0;
        background-image : url("header.png");
        background-position : top left;
        padding-left : 80px;
        padding-top : 30px;
        font-weight : bold;
+       color : black;
 }
 
 table.main td.feeds {
        text-decoration : none;
 }
 
+/*
 td.content a:hover {
        text-decoration : underline;
-}
+} */
 
 table.main td.notify {
        height : 40px;
 
                Search: <input name="q" onclick=\"javascript:search(this);\">
        </td> -->
        <td class="toolbar" valign="middle" colspan="2">        
-               <a class="button">Preferences</a>
+               <a href="prefs.php" class="button">Preferences</a>
                <!-- <a class="button" href="javascript:refresh()">Refresh</a> -->
        </td>
 </tr>