// JavaScript Document
function distributor_add(AElement)
{
	try
	{
		var blockToAdd = document.getElementById("distributor_model").innerHTML;
    AElement.innerHTML += blockToAdd;
	}
	catch(e)
	{
		// ne rien faire...
	}
	return false;
}

function FormField_ShowMessage(AFieldId)
{
   $("#"+AFieldId+"_msg").show();
}

function FormField_HideMessage(AFieldId)
{
	$("#"+AFieldId+"_msg").hide();
}