     //-----------------------------------------------------------------------------------------------------------------------------------------//
    //                                                                                                                                         //
   //             Méthodes et fonctions propres à l'écran de création ou d'ouverture de dossier             //	
  //                                                                                                                                        //
 // jsp : gs_do_creationOuverture                                                                                            //
//---------------------------------------------------------------------------------------------------------------------------------------//


function envoi() {

	if (click == 0) {
		click = 1;
		document.Formulaire.EF_action.value = "vide";
		AffBulle( 'Les habilitations sont en cours de récupération,<br> veuillez patienter' );
		document.Formulaire.submit();
	}
}

function envoi2() {

	if (click == 0) {
		click = 1;
		document.Formulaire.EF_action.value = "vide";
		AffBulle( 'Le dossier et les habilitations <br> sont en cours de récupération,<BR> veuillez patienter' );
		document.Formulaire.submit();
	}
}
function AffBulle(texte) {

	contenu="<TABLE border=0 width='310' height='120' class='BULLE'><TR><TD width='300' height = '50' align='center' >"+texte+"</TD></TR></TABLE>";
	bulle.innerHTML=contenu;
	document.all["bulle"].style.top=228;
    	document.all["bulle"].style.left=((document.body.clientWidth/2) - 150);
	document.all["bulle"].style.visibility="visible";
}


function InitBulle(ColTexte,ColFond,ColContour,NbPixel) {
	IB.ColTexte=ColTexte;IB.ColFond=ColFond;IB.ColContour=ColContour;IB.NbPixel=NbPixel;
	document.write("<div id='bulle' style='position:absolute;top:0;left:0;visibility:hidden'></div>");
}
