
function LEVEL_INSERT()
{
	var f = document.member_form;
	if (!f.Add_MEM_NAME.value)
	{
		alert('±×·ì ¸íÄªÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.           ');
		f.Add_MEM_NAME.focus();
		return false;
	}
	if (!confirm('Á¤¸»·Î »õ ±×·ìÀ» Ãß°¡ÇÏ½Ã°Ú½À´Ï±î?           '))
	{
		return false;
	}
	f.action.value = "mem_insert";
	f.submit();
}



function LEVEL_DOWNDATE(str, uid , type)
{
	var f = document.member_form;
	var orign_group = eval("f.MEM_NAME_"+uid).value;
	var orign_halin = eval("f.MEM_COUT_"+uid).value;

	if (!orign_group)
	{
		alert('\n±×·ì¸íÄªÀÌ ÀÔ·ÂµÇÁö ¾Ê¾Ò½À´Ï´Ù.              \n');
		eval("f.MEM_NAME_"+uid).focus();
		return false;
	}

	if (orign_group != str)
	{
		if (!confirm('\nÀÌ¹Ì È¸¿øÀÌ °¡ÀÔµÈ ±×·ìÀÇ ¸íÄªÀ» ÀÓÀÇ·Î º¯°æÇÒ °æ¿ì           \n\nÇØ´ç±×·ìÀÇ È¸¿øµé¿¡°Ô È¥¶õÀ» ÁÙ ¼ö ÀÖ½À´Ï´Ù.\n\n±×·¡µµ ±×·ì¸íÄªÀ» º¯°æÇÏ½Ã°Ú½À´Ï±î?               \n'))
		{
			return false;
		}
	}
	else {
		if (!confirm('\n\nÁ¤¸»·Î º¯°æÇÏ½Ã°Ú½À´Ï±î?               \n'))
		{
			return false;
		}
	}

	location.href = "A_MM_level_0002.php?action=mem_update&level_num=" + type + "&name=" + orign_group + "&discount=" + orign_halin ;
}

function LEVEL_DELETE(did,low_level,low_index)
{
	var f = document.member_form;
	if (!confirm('\n±×·ìÀ» »èÁ¦ÇÒ °æ¿ì ÇØ´ç±×·ìÀÇ È¸¿øµî±ÞÀº ¸ðµÎ \n\n'+low_level+' µî±ÞÀ¸·Î Æ÷ÇÔ µË´Ï´Ù.\n\n[ÁÖÀÇ]±×·¡µµ ±×·ìÀ» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î?               \n'))
	{
		return false;
	}
	location.href = "A_MM_level_0002.php?action=mem_delete&del_num="+did+"&low_index="+low_index;
}

function LEVEL_UP(ml_name,up_num,me_level)
{
	var f = document.member_form;
	if (!confirm('\n '+ml_name+' ±×·ìÀÇ À§Ä¡¸¦ ÇÏÀ§·¹º§°ú ¹Ù²î½Ã°Ú½À´Ï±î.? \n'))
	{
		return false;
	}
	location.href = "A_MM_level_0002.php?action=mem_up&up_num="+up_num+"&me_level="+me_level;
}

function LEVEL_DOWN(ml_name,down_num,me_level)
{
	var f = document.member_form;
	if (!confirm('\n '+ml_name+' ±×·ìÀÇ À§Ä¡¸¦ »óÀ§·¹º§°ú ¹Ù²î½Ã°Ú½À´Ï±î.? \n'))
	{
		return false;
	}
	location.href = "A_MM_level_0002.php?action=mem_down&down_num="+down_num+"&me_level="+me_level;
}


function WISH_DEL(code,name)
{
	if (!confirm('\n '+name+'À»(¸¦) º¸°üÇÔ¿¡¼­ »èÁ¦ ÇÏ½Ã°Ú½À´Ï±î? \n'))
	{
		return;
	}
	location.href = "U_wish_del_0001.php?code="+code;
}


function SelText()
{
	if (document.MEM_EDIT.LEVEL_COM.value == "")
	{
   			document.MEM_EDIT.LEVEL_COM.value = "";
	}
	document.MEM_EDIT.LEVEL_COM.msglen = 0;
}



function checklen()				//to_messageÀÇ ±æÀÌ
{
	var msgtext, msglen;
	
	msgtext = document.MEM_EDIT.LEVEL_COM.value;
	msglen = document.MEM_EDIT.msglen.value;
	
	var i=0,l=0;
	var temp,lastl;
	
	//±æÀÌ¸¦ ±¸ÇÑ´Ù.
	while(i < msgtext.length)
	{
		temp = msgtext.charAt(i);
		
		if (escape(temp).length > 4)
			l+=2;
		else if (temp!='\r')
			l++;
		// OverFlow
		if(l>250)
		{
			alert("½ÅÃ»»çÀ¯¶õ¿¡ Çã¿ë ±æÀÌ ÀÌ»óÀÇ ±ÛÀ» ¾²¼Ì½À´Ï´Ù.\n ½ÅÃ»»çÀ¯¶õ¿¡´Â ÇÑ±Û 125ÀÚ, ¿µ¹®250ÀÚ±îÁö¸¸ ¾²½Ç ¼ö ÀÖ½À´Ï´Ù.");
			temp = document.MEM_EDIT.LEVEL_COM.value.substr(0,i);
			document.MEM_EDIT.LEVEL_COM.value = temp;
			l = lastl;
			break;
		}
		lastl = l;
		i++;
	}
	MEM_EDIT.msglen.value=l;
}



function UNIONP_LIST(){


	 window.showModalDialog('A_OPEN_iframe_0001.php',window,'dialogWidth:607px; dialogHeight:300px; center:yes; screenTop=yes; scroll=no; status=no; help=no;');


}


function P_GO(A,B,C,D,E,F){

		dialogArguments.document.UNION.PCODE.value = B;
		dialogArguments.document.UNION.PNAME.value = A;
		dialogArguments.document.UNION.B_PRICE.value = C;
		dialogArguments.document.UNION.P_QUA.value = D;
		dialogArguments.document.UNION.CP_E3.value = D;
		dialogArguments.document.UNION.USER_P.value = F;
		dialogArguments.document.UNION.P_QUA1.focus();


    window.close();
}


function CHECK_SUBMIT(form){

	var this_date = form.THISYEAR.value+"-"+form.THISMONTH.value+"-"+form.THISDAY.value+"-"+form.THISHOUR.value;
	var start_date = form.st_y.value+"-"+form.st_m.value+"-"+form.st_d.value+"-"+form.st_h.value;
	var end_date = form.en_y.value+"-"+form.en_m.value+"-"+form.en_d.value+"-"+form.en_h.value;
	
	
	if(form.PCODE.value=="" || form.PNAME.value=="" || form.B_PRICE.value=="" || form.P_QUA.value=="")
	{
		alert("\n\n °øµ¿±¸¸Å »óÇ°À» ¼±ÅÃÇØ ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù. \n\n");
		return;
	}

	if(form.P_QUA1.value != "")
	{
		if(IsNumeric(TrimString(form.P_QUA1.value)) != true)
		{
			alert("\n\n °øµ¿±¸¸Å ±¸¸ÅÁ¦ÇÑ ¼ö´Â ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.P_QUA1.blur();
			form.P_QUA1.focus();
			return;
		}

		if(parseInt(form.P_QUA.value) < parseInt(form.P_QUA1.value))
		{
			alert("\n\n °øµ¿±¸¸Å ±¸¸ÅÁ¦ÇÑ ¼ö´Â »óÇ°¼ö·®º¸´Ù Å¬¼ö ¾ø½À´Ï´Ù. \n\n");
			form.P_QUA1.blur();
			form.P_QUA1.focus();
			return;
		}
	}

	if(!form.BANK.checked && !form.CARD.checked && !form.CASH.checked)
	{
		alert("\n\n °áÁ¦¹æ¹ýÀ» ÇÑ°¡Áö ÀÌ»ó ¼±ÅÃÇØ ÁÖ¼¼¿ä. \n\n");
		form.BANK.focus();
		return;
	}	
	
	if(start_date < this_date && form.ACTION == "INPUT")
	{
		alert("\n\n °øµ¿±¸¸Å ½ÃÀÛ ÀÏ½Ã°¡ ÇöÀç ÀÏ½Ã º¸´Ù µÚ¿¡ ÀÖ½À´Ï´Ù. \n\n ½ÃÀÛ ÀÏ½Ã¸¦ ´Ù½Ã µî·ÏÇØ ÁÖ¼¼¿ä. \n\n");
		form.st_d.focus();
		return;
	}

	if(start_date > end_date)
	{
		alert("\n\n °øµ¿±¸¸Å ¸¶°¨ ÀÏ½Ã°¡ ½ÃÀÛ ÀÏ½Ã º¸´Ù µÚ¿¡ ÀÖ½À´Ï´Ù. \n\n ¸¶°¨ ÀÏ½Ã¸¦ ´Ù½Ã µî·ÏÇØ ÁÖ¼¼¿ä. \n\n");
		form.en_d.focus();
		return;
	}

	if(start_date == end_date)
	{
		alert("\n\n °øµ¿±¸¸Å ¸¶°¨ ÀÏ½Ã¿Í ½ÃÀÛ ÀÏ½Ã°¡ µ¿ÀÏÇÏ°Ô ÁöÁ¤ µÇ¾ú½À´Ï´Ù. \n\n ¸¶°¨ ÀÏ½Ã¸¦ ´Ù½Ã µî·ÏÇØ ÁÖ¼¼¿ä. \n\n");
		form.en_d.focus();
		return;
	}

	
	if(form.F_PRICE[0].checked==true)
	{
		if(IsNumeric(TrimString(form.CP_E1.value)) != true  || parseInt(form.CP_E1.value) < 1 || TrimString(form.CP_E1.value) == "")
		{
			alert("\n\n °øµ¿±¸¸Å 1´Ü°è ³¡ ¼ö·®Àº 0 ÀÌ»ó ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.CP_E1.blur();;
			form.CP_E1.focus();
			return;
		}

		if(IsNumeric(TrimString(form.CP_P1.value)) != true || parseInt(form.CP_P1.value) < 1 || parseInt(form.CP_P1.value) > parseInt(form.USER_P.value) || TrimString(form.CP_P1.value) == "")
		{
			alert("\n\n °øµ¿±¸¸Å 1´Ü°è °¡°ÝÀº 0 ÀÌ»ó "+parseInt(form.USER_P.value)+" ÀÌÇÏ ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.CP_P1.blur();;
			form.CP_P1.focus();
			return;
		}

		if(IsNumeric(TrimString(form.CP_S2.value)) != true || parseInt(form.CP_S2.value) <= parseInt(form.CP_E1.value) || parseInt(form.CP_S2.value) < 1 || TrimString(form.CP_S2.value) == "")
		{
			alert("\n\n °øµ¿±¸¸Å 2´Ü°è ½ÃÀÛ ¼ö·®Àº "+parseInt(form.CP_E1.value)+"  ÀÌ»ó ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.CP_S2.blur();;
			form.CP_S2.focus();
			return;
		}

		if(IsNumeric(TrimString(form.CP_E2.value)) != true || parseInt(form.CP_E2.value) <= parseInt(form.CP_S2.value) || parseInt(form.CP_E2.value) < 1 || TrimString(form.CP_E2.value) == "")
		{
			alert("\n\n °øµ¿±¸¸Å 2´Ü°è ³¡ ¼ö·®Àº "+parseInt(form.CP_S2.value)+"  ÀÌ»ó ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.CP_E2.blur();;
			form.CP_E2.focus();
			return;
		}

		if(IsNumeric(TrimString(form.CP_P2.value)) != true || parseInt(form.CP_P2.value) < 1 || parseInt(form.CP_P2.value) > parseInt(form.CP_P1.value) || TrimString(form.CP_P2.value) == "")
		{
			alert("\n\n °øµ¿±¸¸Å 2´Ü°è °¡°ÝÀº 0 ÀÌ»ó "+parseInt(form.CP_P1.value)+" ÀÌÇÏ ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.CP_P2.blur();;
			form.CP_P2.focus();
			return;
		}

		if(IsNumeric(TrimString(form.CP_S3.value)) != true || parseInt(form.CP_S3.value) <= parseInt(form.CP_E2.value) || parseInt(form.CP_S3.value) < 1 || TrimString(form.CP_S3.value) == "")
		{
			alert("\n\n °øµ¿±¸¸Å 3´Ü°è ½ÃÀÛ ¼ö·®Àº "+parseInt(form.CP_E2.value)+"  ÀÌ»ó ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.CP_S3.blur();;
			form.CP_S3.focus();
			return;
		}

		if(IsNumeric(TrimString(form.CP_S3.value)) != true || parseInt(form.CP_S3.value) > parseInt(form.CP_E3.value) || parseInt(form.CP_S3.value) < 1)
		{
			alert("\n\n °øµ¿±¸¸Å 3´Ü°è ½ÃÀÛ ¼ö·®Àº "+parseInt(form.CP_E3.value)+"(»óÇ°¼ö·®)  ÀÌÇÏ ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.CP_S3.blur();;
			form.CP_S3.focus();
			return;
		}

		if(IsNumeric(TrimString(form.CP_P3.value)) != true || parseInt(form.CP_P3.value) < 1 || parseInt(form.CP_P3.value) > parseInt(form.CP_P2.value) || TrimString(form.CP_P3.value) == "")
		{
			alert("\n\n °øµ¿±¸¸Å 3´Ü°è °¡°ÝÀº 0 ÀÌ»ó "+parseInt(form.CP_P2.value)+" ÀÌÇÏ ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.CP_P3.blur();;
			form.CP_P3.focus();
			return;
		}

	}else{

		if(IsNumeric(TrimString(form.CP_P.value)) != true || TrimString(form.CP_P.value) == "" || parseInt(form.CP_P.value) > parseInt(form.USER_P.value) || parseInt(form.CP_P.value) < 1)
		{
			alert("\n\n °øµ¿±¸¸Å °íÁ¤°¡°ÝÀº 0 ÀÌ»ó "+parseInt(form.USER_P.value)+" ÀÌÇÏ ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.CP_P.blur();;
			form.CP_P.focus();
			return;
		}
	}


	if(form.TRANS[2].checked==true)
	{	
		if(IsNumeric(TrimString(form.TRANS_P.value)) != true || TrimString(form.TRANS_P.value) == "" || parseInt(form.TRANS_P.value) < 1)
		{
			alert("\n\n ¹è¼Û·á´Â 0 ÀÌ»ó ¼ýÀÚ¸¸ ÀÔ·Â °¡´ÉÇÕ´Ï´Ù. \n\n");
			form.TRANS_P.blur();;
			form.TRANS_P.focus();
			return;
		}
	}


	form.action = "./A_GC_union_input_0001.php";
	
	
	form.submit();
}


function DEFAULT_DIS(){

	document.UNION.CP_P.disabled=true;
	document.UNION.CP_P.style.background='silver';
    document.UNION.TRANS_P.disabled=true;
	document.UNION.TRANS_P.style.background='silver';
}

function TRANS_CHECK(){

	document.UNION.TRANS_P.disabled=false;
	document.UNION.TRANS_P.style.background='white';
	document.UNION.TRANS_P.focus();
}

function TRANS_CHECK1(){

	document.UNION.TRANS_P.disabled=true;
	document.UNION.TRANS_P.style.background='silver';

}

function MOVE_PRICE(){

	document.UNION.CP_S1.disabled=false;
	document.UNION.CP_S1.style.background='white';
	document.UNION.CP_E1.disabled=false;
	document.UNION.CP_E1.style.background='white';
	document.UNION.CP_P1.disabled=false;
	document.UNION.CP_P1.style.background='white';
	document.UNION.CP_S2.disabled=false;
	document.UNION.CP_S2.style.background='white';
	document.UNION.CP_E2.disabled=false;
	document.UNION.CP_E2.style.background='white';
	document.UNION.CP_P2.disabled=false;
	document.UNION.CP_P2.style.background='white';
	document.UNION.CP_S3.disabled=false;
	document.UNION.CP_S3.style.background='white';
	document.UNION.CP_E3.disabled=false;
	document.UNION.CP_E3.style.background='white';
	document.UNION.CP_P3.disabled=false;
	document.UNION.CP_P3.style.background='white';
	document.UNION.CP_E1.focus();

	document.UNION.CP_P.disabled=true;
	document.UNION.CP_P.style.background='silver';	
}

function LOCK_PRICE(){

	document.UNION.CP_P.disabled=false;
	document.UNION.CP_P.style.background='white';
	document.UNION.CP_P.focus();

	document.UNION.CP_S1.disabled=true;
	document.UNION.CP_S1.style.background='silver';
	document.UNION.CP_E1.disabled=true;
	document.UNION.CP_E1.style.background='silver';
	document.UNION.CP_P1.disabled=true;
	document.UNION.CP_P1.style.background='silver';
	document.UNION.CP_S2.disabled=true;
	document.UNION.CP_S2.style.background='silver';
	document.UNION.CP_E2.disabled=true;
	document.UNION.CP_E2.style.background='silver';
	document.UNION.CP_P2.disabled=true;
	document.UNION.CP_P2.style.background='silver';
	document.UNION.CP_S3.disabled=true;
	document.UNION.CP_S3.style.background='silver';
	document.UNION.CP_E3.disabled=true;
	document.UNION.CP_E3.style.background='silver';
	document.UNION.CP_P3.disabled=true;
	document.UNION.CP_P3.style.background='silver';
}

function IsNumeric(str)
{
    for(i = 0; i < str.length; i++)
    {
            ch = str.charAt(i);
            if(ch < "0" || ch > "9")
            return false;
    }
    
      return true;
}


function TrimString(str)
{

   /* ¿ÞÂÊ Æ®¸²   */
   len = str.length;
   for(i=0;i<len;i++)
   {
      if(str.substring(0,1) == " ")
      {
         str = str.substring(1);
      }
      else
      {
         break;
      }
   }

   /* ¿À¸¥ÂÊ Æ®¸²   */
   len = str.length;
   for(i=len;i>0;i--)
   {
      if(str.substring(i-1) == " ")
      {
         str = str.substring(0,i-1);
      }
      else
      {
         break;
      }
   }

   return str;
}


function TrimConstrictString(str)
{
    var RtnString = "";

     for (i=0;i<str.length;i++)      
     {
         if (str.substring(i,i+1) != " ")
         {
             RtnString = RtnString + str.substring(i,i+1);
         }
     }
     return RtnString;
}





function MOVE_PRICE1(){

	document.UNION.CP_S1.disabled=false;
	document.UNION.CP_S1.style.background='white';
	document.UNION.CP_E1.disabled=false;
	document.UNION.CP_E1.style.background='white';
	document.UNION.CP_P1.disabled=false;
	document.UNION.CP_P1.style.background='white';
	document.UNION.CP_S2.disabled=false;
	document.UNION.CP_S2.style.background='white';
	document.UNION.CP_E2.disabled=false;
	document.UNION.CP_E2.style.background='white';
	document.UNION.CP_P2.disabled=false;
	document.UNION.CP_P2.style.background='white';
	document.UNION.CP_S3.disabled=false;
	document.UNION.CP_S3.style.background='white';
	document.UNION.CP_E3.disabled=false;
	document.UNION.CP_E3.style.background='white';
	document.UNION.CP_P3.disabled=false;
	document.UNION.CP_P3.style.background='white';

	document.UNION.CP_P.disabled=true;
	document.UNION.CP_P.style.background='silver';	
}

function LOCK_PRICE1(){

	document.UNION.CP_P.disabled=false;
	document.UNION.CP_P.style.background='white';

	document.UNION.CP_S1.disabled=true;
	document.UNION.CP_S1.style.background='silver';
	document.UNION.CP_E1.disabled=true;
	document.UNION.CP_E1.style.background='silver';
	document.UNION.CP_P1.disabled=true;
	document.UNION.CP_P1.style.background='silver';
	document.UNION.CP_S2.disabled=true;
	document.UNION.CP_S2.style.background='silver';
	document.UNION.CP_E2.disabled=true;
	document.UNION.CP_E2.style.background='silver';
	document.UNION.CP_P2.disabled=true;
	document.UNION.CP_P2.style.background='silver';
	document.UNION.CP_S3.disabled=true;
	document.UNION.CP_S3.style.background='silver';
	document.UNION.CP_E3.disabled=true;
	document.UNION.CP_E3.style.background='silver';
	document.UNION.CP_P3.disabled=true;
	document.UNION.CP_P3.style.background='silver';
}

function ZOOM_IMAGE(IMG) 
{
    urlname = '/source/skin/member/U_MM_zoom_iframe.php?IMG='+IMG;
//    window.open(urlname,'win1','top=100,left=450,width=464,height=200');  //ÇØ°áÇØ¾ßÇÒ ¹®Á¦ - ºÎ¸ðÃ¢ ºñÈ°¼º.

	 window.showModalDialog(urlname,window,'dialogWidth:410px; dialogHeight:450px; center:yes; screenTop=yes; scroll=no; status=no; help=no;');
}

function ZOOM_IMAGE2(IMG,W,H)
{
	wW = W-1+10;
	wH = H-1+65;
    urlname = '/source/skin/member/U_MM_zoom_iframe.php?IMG='+IMG+'&W='+W+'&H='+H;
//    window.open(urlname,'win1','top=100,left=450,width=464,height=200');  //ÇØ°áÇØ¾ßÇÒ ¹®Á¦ - ºÎ¸ðÃ¢ ºñÈ°¼º.

	 window.showModalDialog(urlname,window,'dialogWidth:'+wW+'px; dialogHeight:'+wH+'px; center:yes; screenTop=yes; scroll=no; status=no; help=no;');
}

function ZOOM_close(){


    window.close();
}


function LEVEL_AD_UP(id,index,level_name,sort)
{
	var f = document.member_level;
	var f1 = eval("f.LEVEL_VALUE_"+sort).value;
	
	if(level_name == f1)
	{

		if (!confirm('\n '+id+'´ÔÀÇ '+level_name+' µî±ÞÀ» ±×´ë·Î À¯Áö ÇÏ½Ã°Ú½À´Ï±î..? \n\n ÇöÀçµî±ÞÀ¸·Î µî±Þ½ÅÃ»À» ´©¶ô ½ÃÅµ´Ï´Ù. \n'))
		{
			return;
		}
	
		member_level.action="A_MM_level_0003.php?index="+index+"&sort="+sort+"&state=a";
		member_level.submit();

	}else{

		if (!confirm('\n '+id+'´ÔÀÇ '+level_name+' µî±ÞÀ» '+f1+'À¸·Î ¹Ù²Ù½Ã°Ú½À´Ï±î.? \n'))
		{
			return;
		}
	
		member_level.action="A_MM_level_0003.php?index="+index+"&sort="+sort+"&state=b&MEM_ID="+id;
		member_level.submit();
	}

}

function LEVEL_COM(index,MEM_ID)
{
    urlname = 'A_MM_level_com_iframe.php?index='+index+'&MEM_ID='+MEM_ID;
//    window.open(urlname,'win1','top=100,left=450,width=464,height=200');  //ÇØ°áÇØ¾ßÇÒ ¹®Á¦ - ºÎ¸ðÃ¢ ºñÈ°¼º.

	 window.showModalDialog(urlname,window,'dialogWidth:510px; dialogHeight:325px; center:yes; screenTop=yes; scroll=no; status=no; help=no;');
}



function Cobuy_Action()
{


	 window.showModalDialog('U_COBUY_iframe_0001.php',window,'dialogWidth:607px; dialogHeight:305px; center:yes; screenTop=yes; scroll=no; status=no; help=no;');


}


function ORDER_VIEW(ORD_NUM)
{

	 dialogArguments.location.href="./U_MM_login_0008.php?ORNUM="+ORD_NUM;
	 window.close();

}


function ORDER_DEL(ORD_NUM,PR_NAME)
{
	
	 if (!confirm('\n '+PR_NAME+' »óÇ°ÀÇ °øµ¿±¸¸Å ½ÅÃ»À» Ãë¼Ò ÇÏ½Ã°Ú½À´Ï±î.?  \n'))
	 {
			return;
	 }	
	 dialogArguments.location.href="./U_MM_login_0015.php?ORNUM="+ORD_NUM;
	 window.close();

}



function ORDER_CASH(ORD_NUM)
{
	
	 dialogArguments.location.href="/source/skin/shop/U_GC_paymentcard_0002.php?ORNUM="+ORD_NUM;
	 window.close();
}









function Cobuy_Action_MEM()
{


	 window.showModalDialog('U_COBUY_MEM_iframe_0001.php',window,'dialogWidth:607px; dialogHeight:305px; center:yes; screenTop=yes; scroll=no; status=no; help=no;');


}


function ORDER_VIEW_MEM(ORD_NUM)
{

	 dialogArguments.location.href="./U_MM_mymall_0003.php?ORNUM="+ORD_NUM;
	 window.close();

}


function ORDER_DEL_MEM(ORD_NUM,PR_NAME)
{
	
	 if (!confirm('\n '+PR_NAME+' »óÇ°ÀÇ °øµ¿±¸¸Å ½ÅÃ»À» Ãë¼Ò ÇÏ½Ã°Ú½À´Ï±î.?  \n'))
	 {
			return;
	 }	
	 dialogArguments.location.href="./U_MM_mymall_0023.php?ORNUM="+ORD_NUM;
	 window.close();

}


//°èÁÂÀÌÃ¼ °áÁ¦ ½ºÅ©¸³Æ® Ãß°¡ÇÏ±â 
function ORDER_CASH_BANK(ORD_NUM)
{
	
	 dialogArguments.location.href="/source/skin/shop/U_GC_paymentcash_0002.php?ORNUM="+ORD_NUM;
	 window.close();
}
//¹«ÅëÀåÀÔ±Ý °áÁ¦ ½ºÅ©¸³Æ® Ãß°¡ÇÏ±â 
function ORDER_CASH_MUBANK(ORD_NUM)
{
	
	 dialogArguments.location.href="/source/skin/shop/U_GC_paymentbank_0002.php?ORNUM="+ORD_NUM;
	 window.close();
}

function ORDER_CASH_MEM(ORD_NUM)
{
	
	 dialogArguments.location.href="/source/skin/shop/U_GC_paymentcard_0002.php?ORNUM="+ORD_NUM;
	 window.close();
}



function Cobuy_mail(tot,index)
{
	
	 if (!confirm('\n '+tot+'¸í¿¡°Ô  °øµ¿±¸¸Å ¸¶°¨¹× °áÁ¦ ½ÅÃ»¸ÞÀÏÀ»  º¸³»½Ã°Ú½À´Ï±î.?  \n\n ¸ÞÀÏ¹ß¼ÛÈÄ °øµ¿±¸¸Å »óÅÂ°¡ °øµ¿±¸¸Å Á¾·á·Î ¼öÁ¤ µË´Ï´Ù. \n'))
	 {
			return;
	 }	
	 
	 window.showModalDialog('A_GC_union_mail_iframe.php?union_index='+index+'&tot='+tot,window,'dialogWidth:400px; dialogHeight:320px; center:yes; screenTop=yes; scroll=no; status=no; help=no;');
//	 location.href="./A_GC_union_order_0001.php?STATE=STOP&page=1&union_index="+index;

}


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 BEFOR_FA(index)
{
	
	 if (!confirm('\n °øµ¿±¸¸Å ¸¶°¨¹× °áÁ¦ ½ÅÃ»¸ÞÀÏÀ»  º¸³»½Ã°Ú½À´Ï±î.?  \n\n ¸ÞÀÏ¹ß¼ÛÈÄ °øµ¿±¸¸Å »óÅÂ°¡ °øµ¿±¸¸Å Á¾·á·Î ¼öÁ¤ µË´Ï´Ù. \n'))
	 {
			return;
	 }	
	 
	 window.showModalDialog('A_GC_union_mail_iframe.php?union_index='+index+'&SUN=SUN',window,'dialogWidth:400px; dialogHeight:320px; center:yes; screenTop=yes; scroll=no; status=no; help=no;');
//	 location.href="./A_GC_union_order_0001.php?STATE=STOP&page=1&union_index="+index;

}




function BEFOR_FA_1(page,index)
{
	
	 if (!confirm('\n °øµ¿±¸¸ÅÀÇ °áÁ¦¸¦ Á¾·áÇÕ´Ï´Ù.  \n\n Çö°øµ¿±¸¸ÅÀÇ ¹Ì°áÁ¦ ÁÖ¹®¸ñ·ÏÀ» ÁÖ¹®Ãë¼Ò»óÅÂ·Î º¯°æÇÕ´Ï´Ù. \n\n °áÁ¦ Á¾·á¸¦ ½ÇÇà ÇÏ½Ã°Ú½À´Ï±î..?  \n'))
	 {
			return;
	 }		 

	 location.href="A_GC_union_edit_0003.php?page="+page+"&DB_INDEX="+index;

}




function BEFOR_DELETE(index)
{
	
	 if (!confirm('\n ÇöÀç °øµ¿±¸¸Å¸¦ »èÁ¦ÇÕ´Ï´Ù.  \n\n »èÁ¦ÈÄ¿£ ¸®½ºÆ®¿¡¼­ º¼¼ö ¾ø½À´Ï´Ù. \n\n °øµ¿±¸¸Å¸¦ »èÁ¦ ÇÏ½Ã°Ú½À´Ï±î.?  \n'))
	 {
			return;
	 }		 

	 location.href="A_GC_union_edit_0004.php?DB_INDEX="+index;

}

