/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var texts = new Array();
texts['nl'] = new Array();
texts['nl']['Choissisez'] = 'Kiezen';
texts['nl']['Précédente'] = 'Vorig';
texts['nl']['Suivante'] = 'Volgende';
texts['nl']['Voyages']    = 'Reizen';
texts['nl']['Brochures']  = 'Brochures';
texts['nl']['Promotions'] = 'Promoties';
texts['nl']['InfoPays']   = 'InfoLand';

function __(message)
{
    if (typeof(CULTURE)=='undefined') return message;
    if (CULTURE == 'nl_BE')
        return texts['nl'][message];
    return message;
}

