if(typeof(MyOppenheimController) == 'undefined')
    MyOppenheimController = new Object();	
Object.extend(MyOppenheimController,
{    
	showFormError: function(containerForm, showError, badValidators)
	{
		var str = '<strong>Les champs suivants sont incorrects :</strong><br/><ol>';
		badValidators.each(function(v){
			v.element.addClassName('error');
			//str += '<li>' + v.options.message + '</li>';
		});
		str += '</ol>';
		// $('errorMsg').update(str);
		// $('errorMsg').show();
	}

});