var check=1;
var taille="normal";
function _moyen() {
if (check==1) {
taille="moyen";
}
}
function _normal() {
if (check==1) {
taille="normal";
}
}
function fermer() {
document.getElementById('textDiv').style.display = 'none';
}
function pop_it2(the_form) {
if ( document.chatform.nick.value == "" ) {
var base = "
";
document.getElementById("textDiv").innerHTML = base;
document.getElementById('textDiv').style.display = 'block';
return;
}
my_form = eval(the_form)
if (taille=="moyen") {
var hauteur="700";
var largeur="1050";
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
}
else if (taille=="normal") {
var hauteur=(screen.height);
var largeur=(screen.width);
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
}
window.open("wait.php", "popup", "top="+haut+",left="+Gauche+",height="+hauteur+",width="+largeur+",resizable=yes,menubar='no',toolbar='no',location='no',status='no',scrollbars='no'");
my_form.target = "popup";
my_form.submit();
}