//Copyright by R. Hilkens, 2006. Eijkhagencollege Landgraaf
var EU = "<i>Welcome dear guests.</i><br/><br/> In your language isn't a welcome " + 
"text availabe. When you are a EPM members, please contact us. We wish";
"you a lot of pleasure on our website!";

var EN = "<i>Welcome English guests!</i><br/><br/>" +
"Hello! Welcome to the EPmagazine website. We hope that you will " +
"enjoy the website and the articles that are written by students " +
"all over the world. Feel free to browse trough all the articles and " + 
"if you are a student from one of the EPmagazine schools, ask your " +
"teachers if you can add an article yourself! Have fun!";

var IT = "<i>Welcome, Italian guests!</i><br/><br/>" +
"Benvenuti nel nostro sito ufficiale!! Qui puoi trovare gli articoli " +
"publicati nella nostra rivista. Visitando il nostro sito puoi condurre " +
"ricerche scientifiche e accrescere la tua cultura. Inoltre se sei uno " +
"studente o professore di una delle scuole che partecipano al progetto " +
"EPMagazine puoi scrivere degli articoli e li vedrai sicuramente in " +
"questo sito.";

var NL = "<i>Welkom op de site van EPM!</i><br/><br/>" + 
"Op deze site vindt U allemaal " +
"artikelen over wetenschappelijke onderwerpen. Deze onderwerpen zijn gemaakt " +
"door en voor leerlingen. Welke afkomst je ook hebt, hier ben je welkom.";

var flagCurrent;
var flagSrc = new String;
var lngCont = new String;

function dspLng(clng, obj)
{
	lngCont = EN;
	if (clng == "IT") {lngCont = IT;}
	if (clng == "NL") {lngCont = NL;}
	document.getElementById("r_body_content_lng").innerHTML = "<br/>" + lngCont;
	
	resize();
	if (flagCurrent != null)
	{
		flagSrc = flagCurrent.src;
		flagCurrent.src = flagSrc.substring(0, flagSrc.length - 4) + "d.gif";
	}
	obj.src = "style100123/lng/" + clng + ".gif";
	flagCurrent = obj;
}