<!--
function
xpl()
{
	var lng;
	if (navigator.language)
		lng = navigator.language.substring(0,2).toLowerCase();
	else if (navigator.browserLanguage)
		lng = navigator.browserLanguage.substring(0,2).toLowerCase();
    else
        lng = "xx";

	return lng;
}

function
wfs(s)
{
	var l = new Array(3);
	switch(s) {
		case "da":
		/* translation? */
		    l[0] = "empty";
			l[1] = "empty";
			l[2] = "Eller besøg en af vore lokale hjemmesider:";
			l[3] = "empty";
			break;
		case "de":
		/* translation? */
		    l[0] = "empty";
			l[1] = "empty";
			l[2] = "Besuchen Sie eine unserer lokalen Seiten:";
			l[3] = "empty";
			break;
		case "es":
		/* translation? */
		    l[0] = "empty";
			l[1] = "empty";
			l[2] = "Visite nuestras webs locales:";
			l[3] = "empty";
			break;
		case "fr":
		/* translation? */
		    l[0] = "empty";
			l[1] = "empty";
			l[2] = "Visitez l'un de nos sites locaux:";
			l[3] = "empty";
			break;
		case "pt":
		/* OK */
		    l[0] = "empty";
			l[1] = "empty";
			l[2] = "Visite as nossas páginas web locais:";
			l[3] = "empty";
			break;
		case "sv":
		/* Translated OK */
		    l[0] = "empty";
			l[1] = "empty";
			l[2] = "Länkar till våra lokala websajter:";
			l[3] = "empty";
			break;
		case "nb":
			/* fall through */
		case "nn":
			/* fall through */
		case "no":
		/* translation? */
		    l[0] = "empty";
			l[1] = "empty";
			l[2] = "Besøk en av våre lokale hjemmesider";
			l[3] = "empty";
			break;
		default:
		/* Translated OK */
   		    l[0] = "empty";
			l[1] = "empty";
			l[2] = "Links to our local websites:";
			l[3] = "empty";
			break;
	}
	return l;
}

x = wfs(xpl());
-->