function formError(fieldsEmpty, others) {
	/*
	if( fieldsEmpty.length > 0 )
	{
		msg = 'Veuillez remplir les champs suivants :\n';
		
		for each( field in fieldsEmpty )
		{
			msg += '- '+ field +'\n';
		}
		
		alert(msg);
	}*/
}

function globalError() {
	alert('Une erreur est survenue. Veuillez reessayer plus tard.');
}