/**
 * @author j
 */
            /*
             à la fois reconnaissance et inscription à la réunion
             */
            function inscritR(a){
            
                var oXmlHttp = zXmlHttp.createRequest();
				document.getElementById("loadingMsg").style.display = "block";
                if (a == 'crea') 
                    oXmlHttp.open('get', 'inc/boiteIns.inc.php?crea=1', true);
                else 
                    oXmlHttp.open('get', 'inc/boiteIns.inc.php?idR=' + a, true);
                
                
                oXmlHttp.onreadystatechange = function(){
                    if (oXmlHttp.readyState == 4) {
						document.getElementById("loadingMsg").style.display = "none";
                        //alert(oXmlHttp.status);	
                        if (oXmlHttp.status == 200) {
                            document.getElementById("inscriptionBig").style.display = 'block';
                            document.getElementById("inscriptionBig").innerHTML = oXmlHttp.responseText;
                        }
                        else {
                            document.getElementById("inscriptionBig").innerHTML = "une erreur s'est produite, veuille svp recharger la fen&eacute;tre du navigateur afin de disposer des nouvelles valeurs" + oXmlHttp.statusText;
                        }
                    }
                };
                oXmlHttp.send(null);
            }


            /*
             déjà reconnu mais non inscrit
             */
            function inscritN(a){
                var oXmlHttp = zXmlHttp.createRequest();
				document.getElementById("loadingMsg").style.display = "block";
                oXmlHttp.open('get', 'inc/infoRab_reunions.inc.php?idd=' + a, true);
                oXmlHttp.onreadystatechange = function(){
                    if (oXmlHttp.readyState == 4) {
						document.getElementById("loadingMsg").style.display = "none";
                        //alert(oXmlHttp.status);	
                        if (oXmlHttp.status == 200) {
                            document.getElementById("inscriptionBig").style.display = 'block';
                            document.getElementById("inscriptionBig").innerHTML = '<div id="xx"><a href="#" onclick="fermez()">X</a></div>' + oXmlHttp.responseText;
                        }
                        else {
                            document.getElementById("inscriptionBig").innerHTML = '<div id="xx"><a href="#" onclick="fermez()" >X</a></div>une erreur s\'est produite, veuille svp recharger la fen&eacute;tre du navigateur afin de disposer des nouvelles valeurs' + oXmlHttp.statusText;
                        }
                    }
                };
                oXmlHttp.send(null);
            }