
function ModalWindows(w, h) {
  $(document).ready(function() {
	
	$("a.group").fancybox({
		'hideOnContentClick': false,
		'frameWidth': 750
	});

  });
}



function AfficherMasquer (id) {
  if(document.getElementById(id).style.display == '')
    document.getElementById(id).style.display = 'block';
  else
    document.getElementById(id).style.display = '';
}


function ModifierTexteDiv(id_div, texte_div)
{

  
  if (document.getElementById)
  {
    document.getElementById(id_div).innerHTML = texte_div;
  }
  else
  {
    if (document.all) 
    {
      document.all[id_div].innerHTML = texte_div;
    }
  }
}



