// JavaScript Document

//<!--

function changeLanguage(language) {

for (i = 0; i <= parent.frames.length - 1;) {
//	i = 1;
	var path = parent.frames[i].document.URL;
		var structure = path.split("/");
	var locator = structure.length;
	structure[locator-2] = language;
	var newPath = structure.join("/");
	parent.frames[i].document.location = newPath;
	i = i + 1;
}
}

//-->