Websocket Support
Most modern browsers support Websockets, but older versions dont. Unsurprisingly IE is the main culprit.
If the browser fails to have Websocket support, it will redirect to ./oldbrowser.html
JSON Message Format
All JSON messages are sent in the following format.
{
"<message_type>" : {
<JSON message_content>
}
}
DateTime Format
DateTime is represented at a long integer. 10th of a second since year 2000 UTC. So divide by 10 to get seconds.