// JavaScript Document
var fullpath = window.location+"";
var s1 = fullpath.indexOf("html");
var s2 = fullpath.substring(0, s1+5);
var s3 = fullpath.substring(s1+8, fullpath.length);

function toLang(toL)
{
	window.location = s2 + toL + s3 +"";
}