$(document).ready(function() {
	$('#chat').click(function() {
		newwindow = window.open('/chat/index.php','Chat','height=500,width=560');
		if (window.focus) {newwindow.focus()}	  
	});
});
