
function Idioma (Ident)
{
	var Result = '';

	switch (Lng)
	{	case 2: Result = IdiomaIn (Ident); break;
		case 7: Result = IdiomaCa (Ident); break;
	}
	if (! Result) return IdiomaEs (Ident);
	return Result;
}


function IdiomaEs (Ident)
{
	switch (Ident)
	{	case 1: return 'Tiene que aceptar la política de privacidad.';
		case 2: return 'Tiene que indicar el siguiente dato: '
		case 3: return 'El campo Email no es correcto.'
	}
	return '';
}


function IdiomaIn (Ident)
{
	switch (Ident)
	{	case 1: return 'The Privacy Policy must be accepted.';
		case 2: return 'You must indicate the next detail: '
		case 3: return 'The e-mail is not correct.';
	}
	return '';
}


function IdiomaCa (Ident)
{
	switch (Ident)
	{	case 1: return 'Ha d’aceptar la política de privacitat.';
		case 2: return 'Ha d’indicar la següent dada: '
		case 2: return 'Ha d’indicar la següent dada: Email'
	}
	return '';
}


	

