var language_count=4;
var languageHobby=1;
 
function setCookie(name,value){
	var the_date = new Date("December 31, 2020");
	var expiresDate = the_date.toGMTString()
	document.cookie = name+"="+value+";path=/;expires="+expiresDate+";";
}

function getCookie(Name) 
{ 
	var search = Name + "=";
	if(document.cookie.length > 0) { 
		offset = document.cookie.indexOf(search);
		if(offset != -1){ 
			offset += search.length;
			end = document.cookie.indexOf(";", offset);
			if(end == -1){
				end = document.cookie.length;
			}
			return unescape(document.cookie.substring(offset, end));
		} 
		else return ""; 
	} 
} 

function setLanguageHobby(){
	languageHobby=parseInt(getCookie("languageHobby"));
	if(isNaN(languageHobby)){
		languageHobby=1;
	}else if(languageHobby<0 || languageHobby >=language_count){
		languageHobby=1;
	}
}

function getOtherLanguage(index)
{
	try{
		return other[languageHobby][index];
	}catch(error){
		return "";
	}
}
setLanguageHobby();
var other=new Array();
other[0]=new Array();
other[1]=new Array();
other[2]=new Array();
other[3]=new Array();

other[0][0]="入力が正しくありません。";
other[0][1]="必須入力項目です。";
other[0][7]="写真は1枚のみ掲載できます。";
other[0][8]="このファイル形式はサポートしません！";
other[0][9]="アップロードするファイルを指定してください！";
other[0][12]="以上の内容で保存しますか?";

other[1][0]="Please verify your entry";
other[1][1]="This information is required";
other[1][2]="Passwords do not match !! ";
other[1][3]="E-mails do not match !!";
other[1][4]="Please Login to send message";
other[1][5]="You can register only one video file.";
other[1][6]="You can register only one photo.";
other[1][7]="You can register only fifteen photos.";
other[1][8]="This file extension is not supported !!";
other[1][9]="Select the file you wish to upload !";
other[1][10]="Insert keyword";
other[1][11]="Please type your message.";
other[1][12]="Would you like to save the changes?";


other[2][0]="输入有误";
other[2][1]="该项为必填项";
other[2][2]="两次输入密码不一致";
other[2][3]="两次输入Email不一致";
other[2][4]="登录后才能留言";
other[2][5]="最多只能上传1个视频！";
other[2][6]="最多只能上传1张图片！";
other[2][7]="最多只能上传15张图片！";
other[2][8]="不支持所上传的文件格式！";
other[2][9]="请选择您要上传的文件！";
other[2][10]="请输入你要查询的关键字";
other[2][11]="信息内容不能为空";
other[2][12]="确定编辑吗？";

other[3][0]="입력시 오류가 발생!";
other[3][1]="필수 입력 사항입이다.";
other[3][2]="중복 입력한 빌밀전호가 일치하지 않습니다.";
other[3][3]="중복 입력한 메일주소가 일치하지 않습니다.";
other[3][4]="로그인 해야만 쪽지를 보낼수 있습니다.";
other[3][5]="동영상 하나만 업로드 가능합니다!";
other[3][6]="사진 한장만 업로드 가능합니다!";
other[3][7]="사진 15장만 업로드 가능합니다!";
other[3][8]="사용할수없는 파일 포멧입니다!";
other[3][9]="업로드 하려는 파일을 선택해주세요!";
other[3][10]="검색어를 입력하세요!";
other[3][11]="본문 내용을 입력하여 주세요";
other[3][12]="이상 내용으로 수정하겠습니까?";