// JavaScript Document

function changelanguage (language) {
var currentURL=window.location.href;
var isGB=(currentURL.indexOf("_GB",0)!=-1);

if (currentURL.indexOf(".htm",0)==-1) {currentURL=currentURL+"index.htm";}

if ((language=='fr')&&(isGB)) {
	FRcurrentURL=currentURL.substring(0,currentURL.indexOf('_GB'))+'.htm';
	window.location.href=FRcurrentURL;
//	alert('Passage en Français');
	}
if ((language=='gb')&&(!isGB)) {
	GBcurrentURL=currentURL.substring(0,currentURL.indexOf('.htm'))+'_GB.htm';
	window.location.href=GBcurrentURL;
//	alert('Passage en Anglais');
	}
}
