/** -------------------------------------------------------
 * ÇÁ·Î±×·¥¸í  : ¿©¼ºÀÎ·Â°³¹ß¼¾ÅÍ
 * ÆÄÀÏ¸í      : /_script/main.js
 * ÀÛ¼ºÀÚ      : ¾Æ¶÷¾¾¾Ø¾¾
 * ÆÄÀÏ³»¿ë    : È¨ÆäÀÌÁö ¸ÞÀÎ ÇÊ¿ä ½ºÅ©¸³Æ® ¸ðÀ½
 * ¹öÀü        : 0.9
 * ÀÛ¼ºÀÏ      : 2009.09.30
 * ÃÖÁ¾¼öÁ¤ÀÏ  : 2009.09.30
 * ÃÖÁ¾¼öÁ¤ÀÚ  : 
 *--------------------------------------------------------*/
 
function loginCheck(theform) {
	if (!theform.id.value) {
		alert("¾ÆÀÌµð¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä!.");
		theform.id.focus();
		return false;
	}
	if (!theform.passwd.value) {
		alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä!.");
		theform.passwd.focus();
		return false;
	}
	return true;
}
function tab(click) {	
	var images_on = new Array("./images/tab1_on.gif","./images/tab2_on.gif"); 
	var images_off = new Array("./images/tab1_off.gif","./images/tab2_off.gif"); 
	var clickObj = new Array('tab1','tab2');
	for(i=0;i < clickObj.length;i++) {
		if(clickObj[i] == click) {
			document.getElementById('tabimage'+i).src = images_on[i];
			document.getElementById(clickObj[i]).style.display='block';
		} else {
			document.getElementById('tabimage'+i).src = images_off[i];
			document.getElementById(clickObj[i]).style.display='none';
		}
	}
}
function tab_href() {
	if (document.getElementById("tab1").style.display == "block") {
		window.location.href="/notice/notice01.php";
	}
	else if (document.getElementById("tab2").style.display == "block") {
		window.location.href="/edu/edu01.php";
	}
}
function openXmlPopup(url, width, height) {
	window.open(url,"","width="+width+",height="+height+"\"");
}



// È¨ÆäÀÌÁö ¿ÀÇÂ °øÁö ÆË¾÷ 
function getCookie(name) {
	var nameOfCookie = name + "=";
	var x = 0;
	while ( x <= document.cookie.length ) {
		var y = (x+nameOfCookie.length);
		if ( document.cookie.substring( x, y ) == nameOfCookie ) {
			if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 )endOfCookie = document.cookie.length;
			return unescape( document.cookie.substring( y, endOfCookie ) );
		}
		x = document.cookie.indexOf( " ", x ) + 1;
		if ( x == 0 )break;
	}
	return "";
}
if ( getCookie( "dk_popup1" ) != "done" ) {
	//window.open("/popup/20100115/index.php","dk_popup1","width=500,height=250,left=0,top=0");
}
if ( getCookie( "dk_popup2" ) != "done" ) {
	//window.open("/popup/20091106/index.php","dk_popup2","width=350,height=420,left=360,top=0");
}