/******************************************************************************
* ÆÄ ÀÏ ¸í: member_reg1.js
* ÀÛ¾÷³»¿ë: ½Ñ°¡°ÝÀ»Ã£¾Æ¶ó
* ÀÎ    ¼ö: 
* ÀÛ¼ºÀÏÀÚ: 2006-03-01
* ÀÛ ¼º ÀÚ: (ÁÖ)ÀÌÁ¨
 ******************************************************************************/

//-----------------------------------------------------------------------------
// °Ë»ö
//-----------------------------------------------------------------------------
function f_Find() 
{
    document.PUBLIC_FORM.cur_page.value   = "";
    document.PUBLIC_FORM.submit();
}
//-----------------------------------------------------------------------------
// Ç¥½Ã¼ø¼­º¯°æ
//-----------------------------------------------------------------------------
function f_FindOrder(pKbn) 
{
    document.PUBLIC_FORM.FIND_ORDER.value = pKbn;
    document.PUBLIC_FORM.cur_page.value   = "";
    document.PUBLIC_FORM.submit();
}
//-----------------------------------------------------------------------------
// ¾÷Á¾ºÐ·ù°Ë»ö
//-----------------------------------------------------------------------------
function f_FindUpjong(pKbn1,pKbn2) 
{
    document.PUBLIC_FORM.cur_page.value     = "";
    document.PUBLIC_FORM.FIND_UPJONG1.value = pKbn1;
    document.PUBLIC_FORM.FIND_UPJONG2.value = pKbn2;
    document.PUBLIC_FORM.submit();
}
//-----------------------------------------------------------------------------
// ¾÷Ã¼»ó¼¼º¸±â
//-----------------------------------------------------------------------------
function f_ViewUpso(pNo,up,pGoods)
{
	if(up == "N")
		location.href='mbr_disp_ssanga.php?FIND_UPSO=' + pNo + '&CURRENT_GOODS='+pGoods;
	else
		location.href='upso_disp_ssanga.php?FIND_UPSO=' + pNo + '&CURRENT_GOODS='+pGoods;
}
//-----------------------------------------------------------------------------
// »óÇ°»çÁøÇ¥½Ã
//-----------------------------------------------------------------------------
function f_GoodsView(pList)
{
    f_GoodsListClose();
    if ( "" != pList ) {
		document.all.img_view.src = "/files/ssan/sangpum/"+pList;
		document.all.img_view.style.visibility = 'visible';
		//document.all.GOODS_TEXT.innerHTML = pList;
        document.all.GOODS_VIEW.style.left=document.body.scrollLeft + event.clientX+20;
        document.all.GOODS_VIEW.style.top=document.body.scrollTop + event.clientY+1;
        document.all.GOODS_VIEW.style.visibility='visible';
    }
}
//-----------------------------------------------------------------------------
// »óÇ°»çÁøÇ¥½Ã´Ý±â
//-----------------------------------------------------------------------------
function f_GoodsListClose() {
	document.all.img_view.src = "";
	document.all.img_view.style.visibility = 'hidden';
    //document.all.GOODS_TEXT.innerHTML = "";
    document.all.GOODS_VIEW.style.visibility='hidden';
}
