// °Å·¡³»¿ª¼­ Ãâ·Â ÆäÀÌÁö
function showReceipt(str1, str2, mode) {
        if (str1 == "" || str2 == "") {
                return ;
        }

        if (mode == "service")
        	popupWin = window.open("http://pgweb.dacom.net/MpFlowCtrl?eventDiv1=search&eventDiv2=getReceipt&MID="+ str1+"&ORDERID="+str2+"&SYSTEM=NEW",        "popWinName","menubar=0,toolbar=0,scrollbars=no,width=440,height=600,resize=1,left=252,top=116" );
    	else
        	popupWin = window.open("http://pgweb.dacom.net:7085/MpFlowCtrl?eventDiv1=search&eventDiv2=getReceipt&MID="+ str1+"&ORDERID="+str2+"&SYSTEM=NEW",        "popWinName","menubar=0,toolbar=0,scrollbars=no,width=440,height=600,resize=1,left=252,top=116" );
}

function openwin(url, w, h)
{
	myWindow = window.open(url, "_blank", "width="+w+",height="+h+",scrollbars=no,resizable=no,left=0,top=0");
}

