/********************************************************************************
	ÀÛ¼ºÀÚ: ÀÌÂùÈ£(Annguk)
	ÀÛ¼ºÀÏ: 2006-10-26	
	³»  ¿ë: ¸¶À»¼­ºñ½º¿¡ ÀÌ¿ëµÇ´Â ÇÔ¼ö
********************************************************************************/

//¿î¿µÀÚ ¸¶À» º¸¿©ÁÖ±â(TabControls)
function DisplayMenu(name, index, cnt) {
	for(i = 1; i <= cnt; i++) {
	if(index == i) {
	thisMenu = eval(name + index + ".style");
	thisMenu.display = "";
		} else {
	otherMenu = eval(name + i + ".style");
	otherMenu.display = "none";
			}
		}
	}

//¼±ÅÃµÈ ID È°¼ºÈ­ ¿©ºÎ
function xHide(e) {return xVisibility(e,0);}
function xShow(e) {return xVisibility(e,1);}

function xVisibility(e, bShow)
{
  if(!(e=xGetElementById(e))) return null;
  if(e.style && xDef(e.style.visibility)) {
    if (xDef(bShow)) e.style.visibility = bShow ? 'visible' : 'hidden';
    return e.style.visibility;
  }
  return null;
}

function xGetElementById(e)
{
  if(typeof(e)!='string') return e;
  if(document.getElementById) e=document.getElementById(e);
  else if(document.all) e=document.all[e];
  else e=null;
  return e;
}

function xDef()
{
  for(var i=0; i<arguments.length; ++i){if(typeof(arguments[i])=='undefined') return false;}
  return true;
}

/*************************************
 °Ë»öÀ» À§ÇÑ Å°¿öµå ÀÛ¾÷
*************************************/
function MaeulSearch(target, keyword)
{
	try{	
		
		if( target.value.length == 0 )
		{
			window.alert("Ç×¸ñÀ» ¼±ÅÃÇØ ÁÖ¼¼¿ä.");		
			target.focus();
			return false;
		}
		if( keyword.value.length == 0 )
		{
			window.alert("Å°¿öµå¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä.");
			keyword.focus();
			return false;
		}	
		//POSTBACK¿¡ ÀÇÇÑ ¼­¹öÄÁÆ®·Ñ·Î º¯°æ
		//location.href = "maeulSearchList.aspx?key="+ keyword.value + "&tar="+ target.value;
		
		}catch(e) 
		{ 
			alert(e);
			return false; }
		
	return true;	
	
	
}
function SubmitCheck(txtTitle, hdContent_, hdMimeContent_) 
{
	var txtTitle = eval( "document.Form1." + txtTitle );
	var hdContent = eval( "document.Form1." + hdContent_ );
	var hdMimeContent = eval( "document.Form1." + hdMimeContent_ );	
	
	if ( txtTitle.value.length == 0 ) 
	{
		alert("Á¦¸ñÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä.");
		txtTitle.focus();
		return false;		
	}
	
	document.Form1.Wec.MIMEEncodeFilter = 63;
	hdMimeContent.value = document.Form1.Wec.MIMEValue;
	hdContent.value = document.Form1.Wec.TextValue;
			
	return true;
}

function PublicityConfirm(str)
{
	var str = eval(str);
	var loc = '/maeul/maeulservice/MaeulPublicity.aspx?res=3&no=';
	if( confirm("È«º¸±ÛÀº ÃÌÀåÀÌ½Å ºÐ¿¡ ÇÑÇØ 1°³ÀÇ ±Û¾²±â°¡ °¡´ÉÇÕ´Ï´Ù. ¼öÁ¤ÆäÀÌÁö·Î ÀÌµ¿ÇÏ½Ã°Ú½À´Ï±î?") )
	{
		location.href = loc + str;		
	}
	
	return false;
}

function LocationHref( str )
{	
	location.href = str;	
}

