// Fonction d'ouverture de fenetre popup centree// Simon - egzakt.com// 2004-10-28//function egz_openwindow(lien,cible,w,h) {	var _win;	_win = window.open(lien,cible,'width=' + w + ',height=' + h + ',top=' + (screen.height - 400)/2 + 'left='+ (screen.width - 400)/2);	_win.moveTo((screen.width - w)/2,(screen.height - h)/2);	_win.focus();	return _win;}// Fonction d'ouverture de fenetre popup centree// Simon - egzakt.com// 2004-10-28//function egz_openwindow_param(lien,cible,w,h,param) {	var _win;	_win = window.open(lien,cible,param);	_win.moveTo((screen.width - w)/2,(screen.height - h)/2);	_win.focus();	return _win;}/* * Affichage d'un contenu suivant *  * @copyright	egzakt.com * * @version 	2007/06/05 * @package		EDU-083 * @author 		Emilie */function bloc_deroulant(objet) {	objet.next().slideToggle();	objet.toggleClass("selected");	objet.parent().toggleClass("bloc_deroulant_selected");	return false;}/* * Réponse au sondage *  * @copyright	egzakt.com * @author		Emilie */function reponse_sondage(adresse, param) {	$.ajax({		type: "GET",		url: adresse,		data: param,				success: function(reponse){			$("#accueil_sondage_loading").hide();			$("#accueil_sondage_resultats").html(reponse);		}	});}// Jeff - 2007-08-14// Fonction pour changer d'URL à partir du Flashfunction change_url(path) {	window.location.href = path;}