function i18n()
{
	this.raw = {"krant":"adresboek","kranten":"adresboeken","Zoek_kranten":"Zoeken","productnaam":"Pictura Periodiekenviewer","querytype":"zoekmethode","prevImg":"&laquo;","nextImg":"&raquo;","alle_kranten":"alle adresboeken","overzicht_kranten":"Overzicht adresboeken"};
	this.language = 'adresboekenalkmaar'
	this.get = function (frase, def)
	{
		if (!frase.match(/^[a-z_]+/i)) return frase;
		return typeof this.raw[frase] == 'undefined'
			? (typeof def == 'undefined' ? '.'+frase.replace(/_/g, ' ') : def)
			: this.raw[frase]
	}
}