function changeLang(id) {
	var	exdate=new Date();

	exdate.setDate(exdate.getDate() + 365);
	document.cookie= 'lang=' + id + ";expires=" + exdate.toGMTString();

	window.location.assign(self.location.href);
}