Index: /trunk/roundcubemail/skins/larry/templates/login.html
===================================================================
--- /trunk/roundcubemail/skins/larry/templates/login.html	(revision 5667)
+++ /trunk/roundcubemail/skins/larry/templates/login.html	(revision 5668)
@@ -33,4 +33,6 @@
 </div>
 
+<roundcube:include file="/includes/footer.html" />
+
 </body>
 </html>
Index: /trunk/roundcubemail/skins/larry/ui.js
===================================================================
--- /trunk/roundcubemail/skins/larry/ui.js	(revision 5667)
+++ /trunk/roundcubemail/skins/larry/ui.js	(revision 5668)
@@ -134,5 +134,21 @@
           orientation:'v', relative:true, start:296, min:220, size:12 }).init();
       }
-
+    }
+    else if (rcmail.env.task == 'login') {
+      if (bw.ie && bw.ver < 9) {
+        var popup = $('<div>')
+          .addClass('readtext')
+          .html("Roundcube will not work well with the crappy browser ya' using. Get yourself a new internet browsing software and don't come back without!<p>Sincerly,<br/>the Roundcube Dev Team</p>")
+          .appendTo(document.body)
+          .dialog({
+            dialogClass: 'alert',
+            closeOnEscape: true,
+            title: "No way, are you serious?",
+            close: function() {
+              popup.dialog('destroy').remove();
+            },
+            width: 450
+          });
+      }
     }
 
@@ -771,5 +787,5 @@
       if (bw.ie) {
         var new_height = parseInt(this.p2.parent().outerHeight(), 10) - parseInt(this.p2.css('top'), 10) - (bw.ie8 ? 2 : 0);
-        this.p2.css('height') = (new_height > 0 ? new_height : 0) + 'px';
+        this.p2.css('height', (new_height > 0 ? new_height : 0) + 'px');
       }
     }
