// JavaScript Document

function changeLan(currentLan, targetLan) {
	currentLoc 	= new String(window.location);
	LocArray 	= currentLoc.split("/" + currentLan + "/");
	newLoc		= LocArray[0] + "/" + targetLan + "/" + LocArray[1];
	
	document.location = newLoc;
}
