This works:
<script src="chat/script.php?room=1&username=John&draggable=1"></script>
and this does not:
<script>
var username="John";
</script>
<script src="chat/script.php?room=1&username="+username+"&draggable=1"></script>
Any idea how to fix that ?