/*
' default.asp¿¡¼­ »ç¿ëÇÏ´Â Å¬¶óÀÌ¾ðÆ® ½ºÅ©¸³Æ®..
*/
function msgGoToLogin(){
	alert("·Î±×ÀÎ ÈÄ ÀÛ¼ºÇØ ÁÖ¼¼¿ä.");
	location.href = "/common/page/login/login.asp";
}


var clsOldMenu
var objOldMenu

function MenuOnMouseOver() {
	if (event.srcElement.tagName == "TD" || event.srcElement.tagName == "A") {
	
		if (event.srcElement.tagName == "TD" && event.srcElement.id != "") {
			var objEl = document.all(event.srcElement.id);
			objOldMenu = objEl[2];
			clsOldMenu = objEl[2].className;
			objOldMenu.className = "TBL_TopMenuLevel1_HighLight";
		}
		else {
			if (event.srcElement.tagName == "A") {
				if (event.srcElement.parentElement.id == "") return;
				var objEl = document.all(event.srcElement.parentElement.id);
				objOldMenu = objEl[2];
				clsOldMenu = objEl[2].className;
				objOldMenu.className = "TBL_TopMenuLevel1_HighLight";
			}
		}
	}
}

function MenuOnMouseOut() {
	if (event.srcElement.tagName == "TD" || event.srcElement.tagName == "A") {
	
		if (objOldMenu != null)
			objOldMenu.className = clsOldMenu;
	}
}


function LeftMenuOnMouseOver() {
	if (event.srcElement.tagName == "TD" || event.srcElement.tagName == "A") {
	
		if (event.srcElement.tagName == "TD" && event.srcElement.mtype == "P") {
			objOldMenu = event.srcElement;
			clsOldMenu = objOldMenu.className;
			objOldMenu.className = "MenuTD_HLight";
		}
		else {
			if (event.srcElement.tagName == "A") {
				if (event.srcElement.parentElement.mtype != "P") {
					return;
				}
				objOldMenu = event.srcElement.parentElement;
				clsOldMenu = objOldMenu.className;
				objOldMenu.className = "MenuTD_HLight";
			}
		}
	}
}

function LeftMenuOnMouseOut() {
	if (event.srcElement.tagName == "TD" || event.srcElement.tagName == "A") {
	
		if (objOldMenu != null) {
			objOldMenu.className = clsOldMenu;
		}
	}
	return true;
}

	var windows = new Array();		// OpenµÈ Window¿¡ ´ëÇÑ ¹è¿­ ¼±¾ð..

// ======================================================================================================
//	´ÜÀ§È­¸é Open..

	function newWindow(page, pagename, iwidth, iheight, iresize) {
		var CnstResize
		var intwidth, intheight

		var windowWidth = 790;
		var windowHeight = 546;		// Open½Ã WindowÀÇ Size ÁöÁ¤..
		CnstResize = iresize;
		
		if ( iwidth > screen.width) {
			intwidth = windowWidth;
			intheight = windowHeight;
		} else {
			intwidth = iwidth-10;
			intheight = iheight-64;
		}

		var varLPositionHandler = parseInt(screen.width - intwidth)/2-5;
		var varTPositionHandler = parseInt(screen.height - intheight)/2 - 26;

				// Open½Ã WindowÀÇ Position ÁöÁ¤À¸·Î Á¦¾îÆÇ ¸ðµå¿¡ »ó°ü¾øÀÌ..
				// Ç×»ó ScreenÀÇ Center·Î ¶ç¿î´Ù..

//return window.open(page, pagename, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+ iscroll +',resizable=' + CnstResize + ',copyhistory=0,width=' + intwidth + ',height=' + intheight + ',left=' + varLPositionHandler + ',top=' + varTPositionHandler + '');	
		return window.open(page, pagename, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=' + CnstResize + ',copyhistory=0,width=' + intwidth + ',height=' + intheight + ',left=' + varLPositionHandler + ',top=' + varTPositionHandler + '');
	}

// ======================================================================================================
//	Reference Window (Modeless Window) Open

	function openRefWindow(page, pagename, iwidth, iheight, iresize) {
	
/*------------------------------------------------------------------------------------	
		ÆË¾÷À©µµÀÇ resize ¸¦ ¸·±âÀ§ÇØ¼­ ¼öÁ¤...by Á¶±¤¿õ...
		resize°¡ ÇÊ¿äÇÒ°æ¿ì iresize¿¡ 1À» ³Ñ°ÜÁÖ¸éµÊ....¾È³Ñ°ÜÁÙ°æ¿ì ±âº» 0...
------------------------------------------------------------------------------------*/
		if (isNaN(iresize)) {
			iresize = 0
		}
		if (windows[pagename] == null) {
			windows[pagename] = new newWindow(page, pagename, iwidth, iheight, iresize);
		} else if (windows[pagename].closed) {
			windows[pagename] = new newWindow(page, pagename, iwidth, iheight, iresize);
		} else {
			windows[pagename].focus();
		}
	}

	function closeWindow() {
		var blnerr;
		blnerr = false;
	    for (w in windows) {
	        if (!windows[w].closed) {
				windows[w].close();
				windows[w] = null;
//				if (!windows[w].closed) { blnerr = true; }
			}
		}
//		if ( blnerr == true ) {
//			alert('ÀÚµ¿À¸·Î ´ÝÈ÷Áö ¾Ê´Â À©µµ¿ì´Â ¼öµ¿À¸·Î Á¾·á½ÃÄÑÁÖ½Ê½Ã¿ä!');
//		}
	}
	
	function openRefPopup(page) {
		return window.showModalDialog(page, "", "dialogWidth=460px; dialogHeight=480px; center: Yes; help: No; resizable: No; status: No;");
	}

	function openRefPopup2(page, pagenm, iwidth, iheight, iresize) {
		if (isNaN(iresize)) {
			iresize = 0
		}
		return window.showModalDialog(page, "", "dialogWidth="+iwidth+"px; dialogHeight="+iheight+"px; center: Yes; help: No; resizable: "+iresize+"; status: No;");
	}
	
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a && i < a.length && (x=a[i]) && x.oSrc; i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i < a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?")) > 0 && parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x && i < d.forms.length; i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i < d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i < (a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

// URL Á¡ÇÁ..
function GoToURL(pURL) {
	location.href = pURL;
}

function printNowTime() {
	var c = ":";
	var s = "";
	d = new Date();

	s += d.getYear() + "-";
	s += (d.getMonth() + 1) + "-";
	s += d.getDate() + " ";

	s += d.getHours() + c;
	s += d.getMinutes() + c;
	s += d.getSeconds();
	
	var objTime = document.all("lblNowTime"); 
	if (objTime != null) {  
		objTime.innerText = s;
		//window.setTimeout("printNowTime()", 1000);
	}
}

/* --------------------------------------------------------
ÆÄÀÏ ¾÷·Îµå ÁøÇà»çÇ×Ç¥½Ã..
-------------------------------------------------------- */
function ShowProgress()
{
	var pagename = "UploadWin"
	//openRefWindow("/common/page/attach/progress/show_progress.asp?nav=ie", "UploadWin", 385, 150);
	var winstyle = "dialogWidth=385px; dialogHeight:150px; center:yes";
	
	if (windows[pagename] == null) {
		windows[pagename] = window.showModelessDialog("/common/page/attach/progress/show_progress.asp?nav=ie", pagename, winstyle);
	} else {
		windows[pagename].focus();
	}
	
}

function ShowProgress2(pForm)
{
	var pObj = top.ifUpload.frmFile.selUploadFile; // ÆÄÀÏ ¸®½ºÆ®..
	if (top.ifUpload.blnUpload == true) {
		top.windows["UploadWin"].focus();
		return;
	}	
	var pXML = "<rowset>\n";
	
	for (var i=0; i < pObj.length; i++) {
		pXML += "<row doc_id='"+pObj.options[i].value+"' file_nm=\""+pObj.options[i].file_nm+" \" ext='"+pObj.options[i].ext+"'/>\n";
	}
	pXML += "</rowset>\n";
	
	var oTextarea = document.createElement("textarea");
	oTextarea.name = "txtFILE_XML";
	oTextarea.style.display = "none";
	oTextarea.value = pXML;
	pForm.appendChild(oTextarea);
	//if (!confirm(pXML)) return;
	pForm.submit();
}

/* --
 XML Àü¿ªº¯¼ö..
 1.0 Microsoft.XMLDOM
 3.0 Msxml2.DOMDocument.3.0
-- */
var XML_INIT_STRING = "Msxml2.DOMDocument.3.0";


/* -----------------------------------------------------------------
	¹è³Ê µû¶ó´ó±â±â ½ºÅ©¸³Æ®.. 
----------------------------------------------------------------- */

var isDOM = (document.getElementById ? true : false); 
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);
		
function getRef(id)
{
	if (isDOM) return document.getElementById(id);
	if (isIE4) return document.all[id];
	if (isNS4) return document.layers[id];
}
		
var isNS = navigator.appName == "Netscape";
		
function moveRightEdge()
{
	var yMenuFrom, yMenuTo, yOffset, timeoutNextCheck;
	if (isNS4)
	{
		yMenuFrom   = divMenu.top;
		yMenuTo     = windows.pageYOffset + 100;   // À§ÂÊ À§Ä¡..
	}
	else if (isDOM)
	{
		yMenuFrom   = parseInt (divMenu.style.top, 10);
		yMenuTo     = (isNS ? window.pageYOffset : document.body.scrollTop) + 110; // À§ÂÊ À§Ä¡..
	}
		
	timeoutNextCheck = 500;
		
	if (yMenuFrom != yMenuTo)
	{
		yOffset = Math.ceil(Math.abs(yMenuTo - yMenuFrom) / 20);
		if (yMenuTo < yMenuFrom)
			yOffset = -yOffset;
		if (isNS4)
			divMenu.top += yOffset;
		else if (isDOM) {
			divMenu.style.top = parseInt(divMenu.style.top, 10) + yOffset;
			timeoutNextCheck = 10;
		}
	}
	setTimeout ("moveRightEdge()", timeoutNextCheck);
}




/* -----------------------------------------------------------------
	¼¼¼ÇÅ¸ÀÓ¾Æ¿ô¿¡ °üÇÑ°Å..
----------------------------------------------------------------- */
function SessionTimeOut() {
	var d = new Date();
	this.LoadHours = d.getHours();
	this.LoadMinutes = d.getMinutes();
	this.LoadSeconds = d.getSeconds();
	
	this.TimeOut = 20;	// Ã¼Å©ÇØ¾ßÇÒ Å¸ÀÓ¾Æ¿ô ½Ã°£(ºÐ)..
	this.checkTimeOut = checkTimeOut;

}


function checkTimeOut() {
	var h, m, s
	var d = new Date();
	h = d.getHours() - this.LoadHours;
	m = d.getMinutes() - this.LoadMinutes;
	//m = d.getSeconds() - this.LoadSeconds;
	
	if (h > parseInt(this.TimeOut/60)) {
		return true;	// ½Ã°£ ÃÊ°ú....
	} 
	
	if (m > this.TimeOut) {  
		return true;	// ½Ã°£ ÃÊ°ú....
		
	}
	return false;
}

var gclsLoadTime = new SessionTimeOut();

// »ç¿ëÀÚ°¡ ¿äÃ»ÇØ¾ßÇÒ ¸Þ¼Òµå..
function checkSessionTimeOut() {
	var blnNeedLogin = gclsLoadTime.checkTimeOut();
	if (blnNeedLogin) {
		window.status = "please, waiting...";
		var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
		xmlDoc.async = false;
		xmlDoc.load("/common/page/login/relogin.asp");
		window.status = "completed...";
	}
}

function checkFormReset() {
	var pObj = window.event.srcElement;
	if (pObj.type == "text") {
		if (window.event.keyCode == 27) {
			window.event.keyCode = 9;
			pObj.focus();
			return;
		}
	}
}
document.onkeydown = checkFormReset;

// Create a cookie with the specified name and value.
// The cookie expires at the end of the 20th century.
function SetCookie(sName, sValue)
{
  var today = new Date()
  var expire = new Date(today.getTime() + 60*60*24*31*1000)
  document.cookie = sName + "=" + escape(sValue) + "; domain"+location.hostname+"; path=/;";
}

// Retrieve the value of the cookie with the specified name.
function GetCookie(sName)
{

  var first;
  var str = sName + "=";
  if (document.cookie.length > 0) {
      find = document.cookie.indexOf(str)
      if (find == -1) return "-1";
      first = find + str.length
      end = document.cookie.indexOf(";",first)
      if (end == -1) 
			end = document.cookie.length
	  return unescape(document.cookie.substring(first,end))
  }
}

function CheckLoginImage(sID) {

	if (GetCookie("LU") != "-1") {
		var pImgLogin = document.all("imgLogin");
		if (pImgLogin == null) return;
		var pImgJoin = document.all("imgJoin");
		pImgLogin.src = "/images/347/jointbuy_image/"+sID+".IMG/bt_logout.gif";
		pImgJoin.src = "/images/347/jointbuy_image/"+sID+".IMG/bt_mem_modify.gif";
		var pObjLogin = document.all("aLogin");
		if (pObjLogin == null) return;
		var pObjJoin = document.all("aJoin");
		pObjLogin.href = "/common/page/login/logout.asp";
		pObjJoin.href = "/member/joinmember/member_modify.asp";
	}
}
//window.onload = CheckLoginImage;


//¿ÞÂÊ ¸Þ´º ¼û±è&º¸ÀÓ º¯°æ ½ÃÀÛ.
var lastLayer = "";

function showMenu(name){
	if (navigator.appName == "Netscape") {
	  if(document.getElementById(name).style.display!="none"){
		document.getElementById(name).style.display = "none";
	  }else{
		document.getElementById(name).style.display = "";
		if(lastLayer!="" && name!=lastLayer){
			document.getElementById(lastLayer).style.display = "none";
		}
		lastLayer = name;
	  }
	}else{
		if(document.all[name].style.display!="none"){
			document.all[name].style.display = "none";
		}else{
			document.all[name].style.display = "";
			if(lastLayer!="" && name!=lastLayer){
				document.all[lastLayer].style.display = "none";//¿­·ÁÀÖ´Â ÇÑ°³¸¦ ´Ý´Â´Ù.
			}
			lastLayer = name;
		}
	}
}
//¿ÞÂÊ ¸Þ´º ¼û±è&º¸ÀÓ º¯°æ ³¡.

// ÀÌ¸ÞÀÏÃ¼Å©...
function EmailCheck (emailStr) 
{
    var emailPat=/^(.+)@(.+)$/
    var specialChars="\\(\\)<>@,;:\\\\\\\"\\.\\[\\]"
    var validChars="\[^\\s" + specialChars + "\]"
    var firstChars=validChars
    var quotedUser="(\"[^\"]*\")"
    var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/
    var atom="(" + firstChars + validChars + "*" + ")"
    var word="(" + atom + "|" + quotedUser + ")"
    var userPat=new RegExp("^" + word + "(\\." + word + ")*$")
    var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$")

    var matchArray = emailStr.match(emailPat)
    if (matchArray == null) 
    {
        alert("E-mail ÁÖ¼Ò°¡ Á¤È®ÇÏÁö ¾Ê½À´Ï´Ù.\n @ ¿Í . À» È®ÀÎÇÏ½Ê½Ã¿À.")
        return false
    }
    var user = matchArray[1]
    var domain = matchArray[2]

    if (user.match(userPat) == null) 
    {
        alert("¸ÞÀÏ ¾ÆÀÌµð°¡ Á¤È®ÇÑ °Í °°Áö ¾Ê½À´Ï´Ù.")
        return false
    }

    var IPArray = domain.match(ipDomainPat)
    if (IPArray != null) 
    {
        for (var i=1;i<=4;i++) 
        {
            if (IPArray[i] > 255) 
            {
                alert("IP°¡ Á¤È®ÇÏÁö ¾Ê½À´Ï´Ù!")
                return false
            }
        }
        return true
    }

    var domainArray = domain.match(domainPat)
    if (domainArray == null) 
    {
        alert("¸ÞÀÏÁÖ¼ÒÀÇ µµ¸ÞÀÎ ÀÌ¸§ÀÌ Á¤È®ÇÏÁö ¾Ê½À´Ï´Ù.")
        return false
    }

    var atomPat = new RegExp(atom,"g")
    var domArr = domain.match(atomPat)
    var len = domArr.length
    if (domArr[domArr.length-1].length<2 || domArr[domArr.length-1].length > 3) 
    {
        alert("µµ¸ÞÀÎ¸íÀÇ ±¹°¡ÄÚµå´Â 2ÀÚº¸Å¸ Å©°í 3ÀÚº¸´Ù ÀÛ¾Æ¾ß ÇÕ´Ï´Ù.")
        return false
    }

    if (domArr[domArr.length-1].length == 2 && len < 3) 
    {
        alert("¸ÞÀÏÁÖ¼ÒÀÇ µµ¸ÞÀÎ ÀÌ¸§ÀÌ Á¤È®ÇÏÁö ¾Ê½À´Ï´Ù.")
        return false
    }

    if (domArr[domArr.length-1].length == 3 && len < 2) 
    {
        alert("ÀÌ ÁÖ¼Ò´Â È£½ºÆ®¸íÀÌ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù.")
        return false
    }
    return true;
}

function PopUpWindowOpen(surl, popupwidth, popupheight)
{
	Top = (window.screen.availHeight - popupheight) / 2;
	Left = (window.screen.availWidth - popupwidth) / 2;
	if (Top < 0) Top = 0;
	if (Left < 0) Left = 0;
	Future = "fullscreen=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,left=" + Left + ",top=" + Top + ",width=" + popupwidth + ",height=" + popupheight;
	PopUpWindow = window.open(surl, "PopUpWindow", Future);
	PopUpWindow.focus();
}

function PopUpWindowOpenScroll(surl, popupwidth, popupheight)
{
	Top = (window.screen.availHeight - popupheight) / 2;
	Left = (window.screen.availWidth - popupwidth) / 2;
	if (Top < 0) Top = 0;
	if (Left < 0) Left = 0;
	Future = "fullscreen=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,left=" + Left + ",top=" + Top + ",width=" + popupwidth + ",height=" + popupheight;
	PopUpWindow = window.open(surl, "PopUpWindow", Future);
	PopUpWindow.focus();
}

// ?????? ?????????????? ???????? ????
function PopUpWindowOpenScrollForSystem(surl)
{
	var popupwidth = 900;
	var popupheight = 600;
	
	Top = (window.screen.availHeight - popupheight) / 2;
	Left = (window.screen.availWidth - popupwidth) / 2;
	if (Top < 0) Top = 0;
	if (Left < 0) Left = 0;
	Future = "fullscreen=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,left=" + Left + ",top=" + Top + ",width=" + popupwidth + ",height=" + popupheight;
	PopUpWindow = window.open(surl, "PopUpWindow", Future);
	PopUpWindow.focus();
}


function PopUpWindowOpenScroll2(surl, popupwidth, popupheight, winname)
{
	Top = (window.screen.availHeight - popupheight) / 2;
	Left = (window.screen.availWidth - popupwidth) / 2;
	if (Top < 0) Top = 0;
	if (Left < 0) Left = 0;
	Future = "fullscreen=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,left=" + Left + ",top=" + Top + ",width=" + popupwidth + ",height=" + popupheight;
	PopUpWindow = window.open(surl, winname, Future);
	PopUpWindow.focus();
}


function TVplay() {
	var pForm = document.mainFrm;
//	pForm.fcs01.src = "/images/hauzen/viewer_play_on.gif";
//	pForm.fcs02.src = "/images/hauzen/viewer_stop.gif";
//	pForm.fcs03.src = "/images/hauzen/viewer_pause.gif";
    if (pForm.MediaPlayer1.PlayState != 2) {
		pForm.MediaPlayer1.Play();
	}
}
function TVstop() {
	var pForm = document.mainFrm;
	pForm.MediaPlayer1.Stop();
	pForm.MediaPlayer1.CurrentPosition=0;
//	pForm.fcs01.src = "/images/hauzen/viewer_play.gif";
//	pForm.fcs02.src = "/images/hauzen/viewer_stop_on.gif";
//	pForm.fcs03.src = "/images/hauzen/viewer_pause.gif";
}
function TVpause() {
	var pForm = document.mainFrm;
//	pForm.fcs01.src = "/images/hauzen/viewer_play.gif";
//	pForm.fcs02.src = "/images/hauzen/viewer_stop.gif";
//	pForm.fcs03.src = "/images/hauzen/viewer_pause_on.gif";
	if (pForm.MediaPlayer1.PlayState == 2) {
		pForm.MediaPlayer1.Pause();
	}
}


// ÀÌ¹ÌÁö ·Îµù½Ã ¸®»çÀÌÂ¡
function resizeImage(img){
	var maxWidthSize = 560;
	
	if(img.offsetWidth > maxWidthSize){
		img.style.width = maxWidthSize;
	}
}


/*
' ÄíÅ°°ü·Ã ÇÔ¼ö Á¤ÀÇ
*/

function WebCookie() {
	this.expire = new Date();
	this.path = "";
}

WebCookie.prototype.setDate = function(objDate) {
	this.expire = objDate;
}

WebCookie.prototype.setDue = function(due) {
	this.expire = this.expire.getTime() + 1000 * this.due;
}

WebCookie.prototype.setPath = function(path) {
	this.path = path;
}

WebCookie.prototype.setCookie = function (key, value) {
	var strExpire = "";
	var strPath = "";
	
	if (this.expire) {
		strExpire = "; expires=" + this.expire.toGMTString();
	}

	if (this.path) {
		strPath = "; path=" + this.path;
	}

	strCookie = key + "=" + escape(value) + strExpire + strPath;
	
	document.cookie = strCookie;
}

WebCookie.prototype.getCookie = function (key) {
	var cookies = document.cookie;

	if (cookies) {
		var start = cookies.indexOf(key + '=');

		if (start == -1) {
			return null;
		}

		var end = cookies.indexOf(";", start);

		if (end == -1) {
			end = cookies.length;
		}
		end -= start;

		var cookie = cookies.substr(start,end);

		return unescape(cookie.substr(cookie.indexOf('=') + 1, cookie.length - cookie.indexOf('=') + 1));
	}
	else {
		return null;
	}
}


/*
' ¸Þ´º³×ºñ°ÔÀÌ¼Ç ÇÔ¼öµé
*/

function link_0(){location.href="/"} // Home
function link_3000(){location.href="/"} // Home
function link_3010(){location.href="/contactus/contactus_form.asp"} // Contact US
function link_3100(){location.href="/cjentus/intro.asp"} // CJ¿£Åõ½º
function link_3110(){location.href="/cjentus/default.asp"} // ¼±¼ö¼Ò°³
function link_3111(){location.href="/cjentus/player_detail.asp"} // ¿£Åõ½º ´ÙÀÌ¾î¸®
function link_3112(){location.href="/cjentus/player_detail.asp"} // ¿£Åõ½º ¾Ù¹ü
function link_3120(){location.href="/notice/notice_list.asp"} // °øÁö»çÇ×
function link_3130(){location.href="/cjentus/intro.asp"} // CJ ¿£Åõ½º ¼Ò°³
function link_3140(){location.href="/cjentus/coach_main.asp"} // °¨µ¶¼Ò°³
function link_3150(){location.href="/cjentus/history.asp"} // ¿¬Çõ ¹× ÀüÀû
function link_3200(){location.href="/member/member_form.asp"} // My Entus
function link_3210(){location.href="/member/member_first.asp"} // È¸¿ø°¡ÀÔ
function link_3220(){location.href="/member/member_form.asp"} // È¸¿øÁ¤º¸¼öÁ¤
function link_3230(){location.href="/member/member_lostidpw.asp"} // ID/PW Ã£±â
function link_3240(){location.href="/member/member_changepwd.asp"} // ºñ¹Ð¹øÈ£ º¯°æ
function link_3250(){location.href="/member/member_quit.asp"} // È¸¿øÅ»Åð
function link_3290(){location.href="/common/page/login/login.asp"} // ·Î±×ÀÎ
function link_3300(){location.href="/"} // ¿£Åõ½º ÆÄÀÌÆÃ
function link_3310(){location.href="/interview/interview_list.asp"} // ¹ÐÂøÀÎÅÍºä
function link_3320(){location.href="/usermade/usermade_list.asp"} // ¼Ø¾¾ÀÚ¶û °øÀÛ¼Ò
function link_3330(){location.href="/supportmsg/supportmsg_list.asp"} // ÀÀ¿ø¿­Àü
function link_3340(){location.href="/cheerful/cheerful_list.asp"} // Ä¡¾îÇ® °ø¸ð
function link_3350(){location.href="/freeboard/freeboard_list.asp"} // ÀÚÀ¯°Ô½ÃÆÇ
function link_3400(){location.href="/schedule/schedule_cal.asp"} // ¿£Åõ½º °æ±â¼Ò½Ä
function link_3410(){location.href="/schedule/schedule_cal.asp"} // °æ±âÀÏÁ¤
function link_3420(){location.href="/review/review_list.asp"} // °æ±â°á°ú/¸®ºä
function link_3500(){location.href="/media/media_list.asp"} // ¿£Åõ½º È«º¸½Ç
function link_3510(){location.href="/media/media_list.asp"} // º¸µµÀÚ·á
function link_3520(){location.href="/pds/pds_list.asp"} // ÀÚ·á½Ç
function link_3530(){location.href="/blackbox/blackbox_list.asp"} // ºí·¢¹Ú½º
function link_3540(){location.href="/blackbox/request_form.asp"} // ºí·¢¹Ú½º-±âÀÚ¿äÃ»
function link_3550(){location.href="/pds/wallpaper_list.asp"} // ¿ùÆäÀÌÆÛ
function link_3600(){location.href="/cjsports/intro.asp"} // CJ½ºÆ÷Ã÷
function link_3610(){location.href="/cjsports/intro.asp"} // CJ ½ºÆ÷Ã÷ ¼Ò°³
function link_3620(){location.href="/cjsports/greeting.asp"} // ´ÜÀå´Ô ¸»¾¸
function link_3630(){location.href="/"} // Á¶Á÷µµ
function link_3700(){location.href="/blackbox/blackbox_list.asp"} // ¿£Åõ½º ºí·¢¹Ú½º
function link_3800(){location.href="/event/event_ing.asp"} // ÀÌº¥Æ®
function link_3810(){location.href="/event/event_ing.asp"} // ÁøÇàÁß ÀÌº¥Æ®
function link_3820(){location.href="/event/event_last.asp"} // Áö³­ ÀÌ¹øÆ® 
function link_3830(){location.href="/event/event_result.asp"} // ´çÃ·ÀÚ ¹ßÇ¥
function link_3910(){location.href="/sitemap/sitemap.asp"} // »çÀÌÆ®¸Ê
function link_4100(){location.href="/sponsor/off_sponsor.asp"} // ½ºÆù¼­ ¼Ò°³
function link_4110(){location.href="/sponsor/doctor.asp"} // Official Team Doctor
function link_4120(){location.href="/sponsor/off_sponsor.asp"} // Official Sponsor
function link_4130(){location.href="/sponsor/spe_sponsor.asp"} // Special Sponsor


