// 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;}// montrer/cacher le detail d'un contenu// Emilie - egzakt.com// 2006-05-10//function afficher_detail(bloc_id) {	if ($(bloc_id).style.display == "none") {		Effect.BlindDown($(bloc_id), {duration:0.8});						}	else {		Effect.BlindUp($(bloc_id), {duration:0.8});	}}function afficher_detail_class(bloc_id) {	if ($(bloc_id).className == "reponse cacher") {		Effect.BlindDownFaq($(bloc_id), {duration:0.8});	}	else {		Effect.BlindUpFaq($(bloc_id), {duration:0.8});	}}
