or create
} else {
// if we don't have a box for the user, create
// one with his name as id and append it to our
// document...
var box = $("<div id="+pos.name+" class=box>"
+pos.name+"</div>");
box.css('top',pos.y);
box.css('left',pos.x);
box.appendTo("body");
}
});
});
},300);
});
</script>
</head>