Index: firmware/InterlockArduino/src/webserver/webserver.ino
===================================================================
--- firmware/InterlockArduino/src/webserver/webserver.ino	(revision 14513)
+++ firmware/InterlockArduino/src/webserver/webserver.ino	(revision 14517)
@@ -167,9 +167,9 @@
         {
          eth += c;
-         Serial.write(c);
-         Serial.print(' ');
-         Serial.print(c, HEX);
-         Serial.print(' ');
-         Serial.println(eth.length(), DEC);
+         //Serial.write(c);
+         //Serial.print(' ');
+         //Serial.print(c, HEX);
+         //Serial.print(' ');
+         //Serial.println(eth.length(), DEC);
          if ( eth.indexOf('\n') != -1 )
          {
@@ -250,17 +250,17 @@
 {
   // send a standard http response header
-  client->print("HTTP/1.1 200 OK\n");
-  client->print("Content-Type: text/html\n");
-  client->print("Connnection: close\n");
-  client->print("\n");
-  client->print("<!DOCTYPE HTML>\n");
-  client->print("<html><head>\n");
+  client->print("HTTP/1.1 200 OK\r\n");
+  client->print("Content-Type: text/html\r\n");
+  client->print("Connnection: close\r\n");
+  client->print("\r\n");
+  client->print("<!DOCTYPE HTML>\r\n");
+  client->print("<html><head>\r\n");
   
   // add a meta refresh tag, so the browser pulls again every 5 seconds:
-  client->print("<meta http-equiv=\"refresh\" content=\"5; URL=index.html\" />\n");
-  client->print("<meta http-equiv=\"Content-type\" content=\"text/html;charset=UTF-8\" />\n");  
-  
-  client->print("<title>FACT camera power interlock control</title></head><body>\n");
-  client->print("<FORM NAME=\"Form\">\n");
+  client->print("<meta http-equiv=\"refresh\" content=\"5; URL=index.html\" />\r\n");
+  client->print("<meta http-equiv=\"Content-type\" content=\"text/html;charset=UTF-8\" />\r\n");  
+  
+  client->print("<title>FACT camera power interlock control</title></head><body>\r\n");
+  client->print("<FORM NAME=\"Form\">\r\n");
 }
 
@@ -285,5 +285,5 @@
       //client->print(" No "); 
     }
-    client->print("</span> <br />\n");
+    client->print("</span> <br />\r\n");
   }
 }
@@ -293,5 +293,5 @@
     for ( int button_id = 0; button_id < Number_of_Buttons; ++button_id )
     {
-        client->print("<P><INPUT TYPE=SUBMIT NAME=\"");
+        client->print("<P><INPUT TYPE=\"SUBMIT\" NAME=\"");
         client->print(button_name[button_id]);
         client->print("\" VALUE=\"");
@@ -305,5 +305,5 @@
         }
         
-        client->print("><br />\n");
+        client->print(" /></P><br />\r\n");
     }
 }
@@ -318,5 +318,5 @@
 void html_footer(EthernetClient *client)
 {
-  client->print("</FORM></body></html>\n");
+  client->print("</FORM></body></html>\r\n\r\n\r\n");
 }
 
