function changeLanguage(strLanguage) {
	var intLastSlashPos
	var strCurrentLanguage	
	
	intLastSlashPos = window.location.href.lastIndexOf('/')
	strCurrentLanguage = window.location.href.substring(intLastSlashPos - 2, intLastSlashPos)

	window.location = window.location.href.replace(strCurrentLanguage, strLanguage)

}
