// JavaScript Document
function open_chat(url){ 
window.open(url,"Tchat","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width="+screen.width+",height="+screen.height+""); 
}

function popupfull(url){
window.open(url,"popfull","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
}


function valider()
{
var nick = document.forms.chat.username.value;
var sexe = document.forms.chat.sexe.value;
var age = document.forms.chat.age.value;
var ville = document.forms.chat.ville.value;

open_chat("http://www.chat-quebec.com/chat/index.php?username="+nick+"&sexe="+sexe+"&age="+age+"&ville="+ville+"");

}
