window.addEvent('domready', function() {
	var anotherEl = $('marques');
	
	// Again we are able to create a morph instance
	var morph = new Fx.Morph('marques');
	
	$('morphEffect').addEvent('click', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		anotherEl.morph('.myClass');
	});
	
	$('morphEffectDown').addEvent('click', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		anotherEl.morph('.myClassDown');
	});	
}); 

function goSuivi(){
  dts = $('formSuivi').toQueryString();
  url = "/fiche-cde.asp?";
  data = url + dts;
  MOOdalBox.open(data, "", "moodalbox 700 500");
  return false;
}		