/**************************************************
Fonction pour ouvrire la fenêtre de chat
au centre de l'écran
**************************************************/
function openChat(id) {
	if(id == "" || id == null){
		alert("Vous devez être connecté pour accéder au Chat.");
	}else{
		var w_sceen = screen.width;
	  	var h_sceen = screen.height;
  		var w_chat = 700;
	  	var h_chat = 400;
		var x = (w_sceen/2)-(w_chat/2);
		var y = (h_sceen/2)-(h_chat/2);
		var chatLink = "http://www.windsurfing.qc.ca/chat/chat.php?usrPseudo="+id;
		var option = "left="+x+",top="+y+",width="+w_chat+",height="+h_chat;
  	  	window.open(chatLink,'WQchat',option);
	}
}
