var langpath = 'http://lostclan.sourceforge.net/'
var lang = 'English'

function goto(page) {
location.replace(langpath+page);
}

function SetCookie(cookieName,cookieValue,nDays) {
 var today = new Date();
 var expire = new Date();
 if (nDays==null || nDays==0) nDays=1;
 expire.setTime(today.getTime() + 3600000*24*nDays);
 document.cookie = cookieName+"="+escape(cookieValue)
                 + ";expires="+expire.toGMTString();
}

function ReadCookie(cookieName) {
 var theCookie=""+document.cookie;
 var ind=theCookie.indexOf(cookieName);
 if (ind==-1 || cookieName=="") return ""; 
 var ind1=theCookie.indexOf(';',ind);
 if (ind1==-1) ind1=theCookie.length; 
 return unescape(theCookie.substring(ind+cookieName.length+1,ind1));
}

function getLangCookie(){
var testlangpath = ReadCookie('langpath');
var testlang = ReadCookie('lang');
if(testlangpath==""){
langpath = 'http://lostclan.sourceforge.net/';
lang = 'English';
}else{
langpath = testlangpath;
lang = testlang;
}
return lang;
}

function setlang(language,path){
SetCookie('langpath',path,10);
SetCookie('lang',language,10);
langpath = path;
lang = language;
goto('index.html');
}
