/****************************************************/
/* Exporte une liste.								*/
/****************************************************/
function Export(Check)
{
	var Form=document.forms[ExpFormName];
	
	if(Check)
	{
		if(Form.elements["Separateur"].value.length<=0)
		{
			window.alert(ErrMsg["ERR_NO_SEP"]);
			Form.elements["Separateur"].focus();
			return;	
		}
	}
	Form.submit();
}
