﻿function couleur(obj) {
     obj.style.backgroundColor = "#FFFFFF";
}

function Chat() {
   if (document.chat.chatpseudo.value==""){
   window.scrollTo(0,0)
   alert ("Merci de saisir votre pseudo");
   document.chat.chatpseudo.style.backgroundColor = "#fbb724";
   document.chat.chatpseudo.focus();
   return false;
   }
   
      if (document.chat.pays.value==""){
   window.scrollTo(0,0)
   alert ("Vous devez choisir votre pays !");
   document.chat.pays.style.backgroundColor = "#fbb724";
   document.chat.pays.focus();
   return false;
   }
	  
	        if (document.chat.sexe.value==""){
   window.scrollTo(0,0)
   alert ("Vous devez choisir votre sexe !");
   document.chat.sexe.style.backgroundColor = "#FF0000";
   document.chat.sexe.focus();
   return false;
   }
			
	      if (document.chat.age.value== 0){
   window.scrollTo(0,0)
   alert ("Vous devez choisir votre âge !");
   document.chat.age.style.backgroundColor = "#FF0000";
   document.chat.age.focus();
   return false;
   }
		  
		        if (document.chat.cgu.checked == 0){
   window.scrollTo(0,0)
   alert ("Vous devez accepter les Conditions Générales d'Utilisation");
   document.chat.cgu.style.backgroundColor = "#FF0000";
   document.chat.cgu.focus();
   return false;
   }
   
   return true;
}