// <!--
function setLang() {

	var LANGID = document.langForm.LANGID.value;
	if (document.langForm.remember.checked == true) {
		var expireDays = 365;
	} else {
		var expireDays = 0;
	}
	createCookie('LANGID',LANGID,expireDays);
	// if (LANGID == 8) LANGID = 9;
	if (LANGID == 1) {
		location.href = 'index.html';
	} else {			
		var thisURL = 'index_' + LANGID + '.html';
		location.href = thisURL;
	}
}
// -->
