/********************************************************************************************************
	Popup Á¤ÀÇ
	º¯¼ö Á¤ÀÇ : pop - ÆÄÀÏ¸í, width - °¡·Î»çÀÌÁî, height - ¼¼·Î»çÀÌÁî, flag - 0:½ºÅ©·Ñ¾øÀ½, 1:½ºÅ©·ÑÀÖÀ½
********************************************************************************************************/
function pop(pop,width,height,flag)
{
	var url = pop;
	var wd = width;
	var he = height;

    if (flag == "0" )
    {  window.open(url,"","toolbar=0,menubar=0,scrollbars=no,resizable=no,top=20,left=20,width=" + wd +",height=" + he + ";");  }
    else 
    {  window.open(url,"","toolbar=0,menubar=0,scrollbars=yes,resizable=no,top=20,left=20,width=" + wd +",height=" + he + ";");  }
}

/********************************************************************************************************
   À©µµ¿ì ¿ÀÇÂÃ¢ 
********************************************************************************************************/
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/********************************************************************************************************
	select ¹Ú½º ÀÌ¿ë½Ã ¼­ºñ½ºÂÊ ÆäÀÌÁö ÀÌµ¿
********************************************************************************************************/

function go_select2(item){
	if(item != '' || item != null){
		top.location.href=item;
	}
}