I want to give you an idea of the simplest communication between to computers i can think of only using javascript, to give you some thoughts to get you started. From my understanding you want to use javascript for everything so here we go:
If you use Node.js this is the code:
var sys = require("sys"),
my_http = require("http");
my_http.createServer(function(request,response){
sys.puts("I got kicked");
response.writeHeader(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8080);
sys.puts("Server Running on 8080");
This makes a server listening to a port, and you can have it send and receive on this port. Put this on two pc's and you have communications between them already on the port of your choice.
Put some window to type the text and put a send button, and you are on your way. You stick your incoming in an array, that you show in your text window... in 3 hours you can have this up and running...
this is only to get you started on thinking about this... not my solution to how you should make a per to per chat application