//¹Ìµð¾î ÆÄÀÏ ÆÐÄ¡
function EP_activate(num) {
    document.write(document.getElementById("DEACTIVATED_TEXT" + num).value);
}


//***** ·Ñ¿À¹ö *****
function imgOver(param) {
	param.src = param.src.replace("out.gif", "over.gif");
}
function imgOut(param) {
	param.src = param.src.replace("over.gif", "out.gif")
}


//***** ÆË¾÷ *****
function pop(url,width,height,scroll){
	window.open(url,'_blank','width='+width+',height='+height+',scrollbars='+scroll);
}


//***** ÆÐ¹Ð¸®»çÀÌÆ® »õÃ¢¿­±â *****
function namosw_goto_byselect(sel, targetstr)
{
  var index = sel.selectedIndex;
  if (sel.options[index].value != '') {
     if (targetstr == 'blank') {
       window.open(sel.options[index].value, 'win1');
     } else {
       var frameobj;
       if (targetstr == '') targetstr = 'self';
       if ((frameobj = eval(targetstr)) != null)
         frameobj.location = sel.options[index].value;
     }
  }
}

function goLogout(){
	document.location.href="logOut.jsp";
}

function goLogin(referUrl, referSiteid){
	referUrl = escape(referUrl);
	document.location.href="loginGate.jsp?referUrl="+referUrl+"&referSiteid="+referSiteid;
}

function goJoin(referUrl, referSiteid, encKey){
	referUrl = escape(referUrl);
	document.location.href="agreement.jsp?referUrl="+referUrl+"&referSiteid="+referSiteid + "&encKey="+encKey;
}

function goModify(referUrl, referSiteid, encKey){
	referUrl = escape(referUrl);
	document.location.href="modifyGate.jsp?referUrl="+referUrl+"&referSiteid="+referSiteid + "&encKey="+encKey;
}

function goOut(referUrl, referSiteid, encKey){
	referUrl = escape(referUrl);
	document.location.href="secedeGate.jsp?referUrl="+referUrl+"&referSiteid="+referSiteid + "&encKey="+encKey;
}

function goFindId(referUrl, referSiteid, encKey){
	referUrl = escape(referUrl);
	document.location.href="findId.jsp?referUrl="+referUrl+"&referSiteid="+referSiteid + "&encKey="+encKey;
}

function goFindPW(referUrl, referSiteid, encKey){
	referUrl = escape(referUrl);
	document.location.href="findPW.jsp?referUrl="+referUrl+"&referSiteid="+referSiteid + "&encKey="+encKey;
}

function goAgreeInfo(referUrl, referSiteid, encKey){
	referUrl = escape(referUrl);
	document.location.href="agreeInfo.jsp?referUrl="+referUrl+"&referSiteid="+referSiteid + "&encKey="+encKey;
}

function goPrivacy(referUrl, referSiteid, encKey){
	referUrl = escape(referUrl);
	document.location.href="privacy.jsp?referUrl="+referUrl+"&referSiteid="+referSiteid + "&encKey="+encKey;
}

//
function disableScreen(){
	$.blockUI({ 
			message: "Ã³¸®ÁßÀÔ´Ï´Ù. Àá½Ã¸¸ ±â´Ù·ÁÁÖ¼¼¿ä.", 
			css: { 
			border: 'none', 
			padding: '15px', 
			backgroundColor: '#000', 
			'-webkit-border-radius': '10px', 
			'-moz-border-radius': '10px', 
			opacity: '.5', 
			color: '#fff' 
		} }); 
//				$.blockUI.defaults.css.border = '1px'; 
/*				$.blockUI({ 
			message: $('#lodingIMG'), 
			css: { 
				top:  ($(window).height() - $("#lodingIMG").height()) /2 + 'px', 
				left: ($(window).width() - $("#lodingIMG").width()) /2 + 'px', 
				width: $("#lodingIMG").width() + 'px',	
				cursor: 'pointer' 
			}

		}); 
*/				
}

