/*	**********************************************************************************************
		*                                                                                            *
		*   Développeur : SIBILLE Thibaut - thibaut@rimay.net                                        *
		*   Destinataire : Sangha Rimay International                                                *
		*   Date de création du projet : juin 2009                                                   *
		*   Version du projet : 3.0                                                                  *
		*   Adresse web : www.rimay.net                                                              *
		*                                                                                            *
		*   Commentaires : contient les fonctions JavaScript Globales                                *
		*                                                                                            *
		********************************************************************************************** */


		/********************************************************************************************
		* Ouvre une popup du calendrier                                                            *
		********************************************************************************************/
			function popupCalendrier(idSl,folder)
			{
				winName = window.open(folder + "/popupCalendriers.php?idSl=" + idSl,"calendrier","left=1,top=1,width=" + screen.width + ",height=" + screen.height/1.2 + ",resizable=1,scrollbars=1,status=0");
				winName.focus();
			}


		/********************************************************************************************
		* Ouvre une popup du détail du calendrier                                                   *
		* %% CODE EN DUR ! %% : le dossier d'accès est en dur                                       *		
		********************************************************************************************/
			function popupCalendrierDetails(idEvent,idSl,anneeEvent,moisEvent)
			{
				winName = window.open("../espaceedln/popupCalendriers_details.php?idEvent=" + idEvent + "&idSl=" + idSl + "&annee=" + anneeEvent + "&mois=" + moisEvent,"calendrier","left=1,top=1,width=" + screen.width + ",height=" + screen.height/1.2 + ",resizable=1,scrollbars=1,status=0");
				winName.focus();
			}
