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