var popup;
var testOuverture=false;

function pop_it(the_form) {
   testOuverture=true;
   my_form = eval(the_form);
   popup=window.open("about:blank","popup");
   my_form.target = "popup";
   my_form.submit();
}

function fermer(){
	if(testOuverture){
	window.location.href='?specialisation=1&spe=validationReservation';
		if(popup){
			testOuverture=false;
			popup.close();
		}
		
	}
}
