git-svn-id: http://xe-core.googlecode.com/svn/trunk@1847 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-07-02 09:25:08 +00:00
parent ab374b12f2
commit cb3246888e
29 changed files with 635 additions and 22 deletions

View file

@ -535,3 +535,15 @@ function open_calendar(fo_id, day_str, callback_func) {
popopen(url, 'Calendar');
}
// 언어코드 (lang_type) 쿠키값 변경
function doChangeLangType(obj) {
var val = obj.options[obj.selectedIndex].value;
setLangType(val);
location.href = location.href;
}
function setLangType(lang_type) {
var expire = new Date();
expire.setTime(expire.getTime()+ (7000 * 24 * 3600000));
xSetCookie('lang_type', lang_type, expire);
}