
//---------------------- ·Î±×ÀÎ -------------------------//
//ÇÊµå °Ë»ç
function checkloginfield(){
	var f = document.forms["login"];

	if (f.loginId.value == ''){
		alert('¾ÆÀÌµð¸¦ ÀÔ·ÂÇÏ¼¼¿ä.');
		f.loginId.focus();
		return false;
	}
	if (document.login.password.value == ''){
		alert('ÆÐ½º¿öµå¸¦ ÀÔ·ÂÇÏ¼¼¿ä.');
		f.password.focus();
		return false;
	}

	return true;
}
//¾ÆÀÌµð,ÆÐ½º¿öµå ÀúÀå ¿©ºÎ ÄÁÆß
function cookieSetting(){
	if (document.login.saveIDPW.checked==true){
		check = confirm("¾ÆÀÌµð¿Í ÆÐ½º¿öµå¸¦ ÀúÀå ÇØ³õÀ¸½Ã°Ú½À´Ï±î?\n\n°ø°øÀå¼Ò¿¡¼­´Â °³ÀÎÁ¤º¸°¡ À¯ÃâµÉ ¿ì·Á°¡ ÀÖÀ¸´Ï\n\n¹Ýµå½Ã Áý¿¡¼­¸¸ ÀÌ¿ëÇÏ½Ã±â ¹Ù¶ø´Ï´Ù.\n\nº» ±â´ÉÀº ·Î±×¾Æ¿ô¹öÆ°À» ´©¸£¸é ÀÚµ¿À¸·Î ÇØÁ¦µË´Ï´Ù.");
		if (check == false){
			document.login.saveIDPW.checked=false;
		}
	}
}

//---------------- ³óÀå ¿ÀÇÂ ½ºÅ©¸³Æ® ------------------//
function openFarmPage(){ //¸ÂÃãÁøµµ³óÀå & ¹«·á³óÀå (enterFarm_hp.php ¿¡¼­ ºÐ±â)
	window.open("/farm/enterFarm_hp.php","farm", "fullscreen=yes, scrollbars=yes");
}
function openFarmPageEdu(){
	window.open("/farm/openFarm_edu.html","farm", "fullscreen=yes");
}
function openFarmPageJun(){ //¸ÂÃãÁøµµ '¸Àº¸±â' ³óÀå
	window.open("/farm/enterFarm_jun.php","farm", "fullscreen=yes");
}
function openFarmPageDino(){ //°ø·æ³óÀå
	window.open("/farm/enterFarm_EduDino.php","farm", "fullscreen=yes");
}
function openTasteFarmPage(){ //³ª±×³× »ùÇÃ ³óÀå
	window.open("/farm/openFarm_taste.html","farm", "fullscreen=yes");
}



//------------------- °ÔÀÓÃ¢ ¿ÀÇÂ ----------------------//
function openGameWin(gameCode){
  var gameURL = "/game/gameWindow.html?gameCode=" + gameCode;
  window.open(gameURL,"edufarm", "fullscreen=yes");
}
function openGameWinSwf(gameCode){
  var gameURL = "/game/gameWindowSwf.html?gameCode=" + gameCode;
  window.open(gameURL,"edufarm", "fullscreen=yes");
}
function openPrintWin(kind,gameCode){
  var gameURL = "/game/printWindow.html?gameCode=" + gameCode + "&kind=" + kind;
  window.open(gameURL,"edufarm", "width=750,height=400,scrollbars=YES,top=100,left=100,status=0");
}
function sendEgg(gameCode){
	var gameURL = "/game/game_popup.html?gameCode=" + gameCode;
	w=window.open(gameURL,'sendEgg','left=500,top=200,width=400,height=90');
	w.focus();
}

//------------------- »ç¿ëÀÚ ¾È³» ¸Þ¼¼Áö ----------------------//
function loginMsg(){
	alert('·Î±×ÀÎ ÇÏ¼Å¾ß ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.');
}
function pleaseLogin(url){
	alert('À¯·áÈ¸¿ø¸¸ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.\n\nÈ¸¿øÀº ·Î±×ÀÎ ÇØÁÖ¼¼¿ä.');
	location.href = "/userlog/login.html?refer=" + url;
}
function pleaseCovert(){
	alert('À¯·áÈ¸¿ø¸¸ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.');
	location.href = "/register/register_payment1.html";
}
function pleasePay(){
	alert('°áÁ¦³»¿ªÀÌ ¾ø°Å³ª, ±â°£ÀÌ Á¾·áµÇ¾ú½À´Ï´Ù.\n\n°áÁ¦(ÀÔ±Ý)ÇÏ¼Å¾ß »ç¿ë°¡´ÉÇÕ´Ï´Ù.');
	location.href = "/register/register_payment1.html";
}


//------------------- ±×¿Ü ÇÔ¼ö ----------------------//

// È­¸é Áß¾Ó¿¡ ÆË¾÷ ¶ç¿ì±â - props´Â À©µµ¿ì ÆË¾÷½Ã ÁÖ´Â ¼Ó¼ºÀ» ¸»ÇÑ´Ù..ex)"resizable=no,fullscreen=no"
function popCenter(URL,w,h,props) {
   var centerX = parseInt(screen.width / 2);
   var centerY = parseInt(screen.height / 2);
   var popHalfWidth = parseInt(w / 2);
   var popHalfHeight = parseInt(h / 2);
   var topX = centerX - popHalfWidth;
   var topY = centerY - popHalfHeight;
   var attr = "width="+w+",height="+h+","+props+",left="+topX+",top="+topY;
   pc = open(URL,'edufarm',attr);
   pc.focus();
}

//°ø¹éÃ¼Å©
String.prototype.trim = function(){ return this.replace(/(^\s*)|(\s*$)/g, ""); }

// ÁÂÃø ³óÀå°¡±â ·¹ÀÌ¾î ¸Þ´º°ü·Ã ÇÔ¼ö
function open_lmenu(){lmenu.style.visibility="visible";}
function close_lmenu(){lmenu.style.visibility="hidden";} 
function swapImgRestore(){var i,x,a=document.sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;}

