/***************************************************************************************
 * ouvrir une fenetre pop_up
 ***************************************************************************************/

function ouvre_fenetre(w, width, height) {
	tx=(((screen.availWidth)/2)-220);
	ty=(((screen.availHeight)/2)-300);
	myWindow = open(w,"image","toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width="+width+",height="+height+",top="+ty+",left="+tx+",alwaysraised=yes");
	
}

//RAFRAICHISSEMENT AUTOMATIQUE DU CALENDRIER LORS DU CHOIX DU MOIS OU DE L'ANNEE
function onCalendarSearchSubmit(wmode) {
	mois = document.getElementById('mois').value;
	annee = document.getElementById('annee').value;
	var wmode = wmode;
		
	document.getElementById('calendarSearch').action = "pop_up_calendrier_vl.php"+"?WMode="+wmode;
	document.getElementById('calendarSearch').submit();
}
