function English()
{
	var Url = document.location.href;

	var pos = Url.indexOf("fr");
	if(pos !=-1)
	{
		Url = Url.replace(/fr/,'en');
		document.location.href = Url;
	}
	else {
		/*-----------------------------------
		var pos = Url.indexOf("nl");
		if(pos !=-1) {
			Url = Url.replace(/nl/,'en');
			document.location.href = Url;
		} else {
			document.location.href = "index.en.html";
		}
		------------------------------------*/
		document.location.href = "/index.en.html";
	}
}

function Francais()
{
	var Url = document.location.href;

	var pos = Url.indexOf("/en/");
	if(pos !=-1)
	{
		Url = Url.replace(/en/,'fr');
		document.location.href = Url;
	}
	else {
		/*----------------------------------
		var pos = Url.indexOf("nl");
		if(pos !=-1) {
			Url = Url.replace(/nl/,'fr');
			document.location.href = Url;
		} else {
			document.location.href = "index.html";
		}
		----------------------------------*/
		document.location.href = "/index.html";
	}
}