function fnjskey_Enter() {
        if (event.keyCode == 13) return true;
        else return ;
}
function fnjsSel_MoveItem(src, dest)
{
    var len     = src.options.length;
    var i;
    var item_val;

    for (i=0; i < len;i++) {
        if (src.options[i].selected == true) {
            fnjsSel_AddItem(dest, src.options[i].value);
            src.options[i]  = null;
            len--;
        }
    }
}
function fnjsSel_DeleteItem(sel)
{
    var     len = sel.options.length;
    for (i=0; i < len;i++) {
        if (sel.options[i].selected) {
            sel.options[i] = null;
            len--;
        }
    }
}
function fnjsSel_AddItem(sel, item_val)
{
    var     add_index   = sel.options.length;
    var     item;

    for (i=0; i<add_index; i++) {
        if (sel.options[i].value == item_val) {
            alert("[" + item_val + "]¸®½ºÆ®¿¡ ÀÌ¹Ì ÀÖ½À´Ï´Ù." );
            return;
        }
    }
    item        = new Option(item_val, item_val);
    sel.options[add_index] = item;
}

function fn_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable=yes');
}
function fnjs_open_window(name, url, left, top, width, height)
{
	window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar=no,menubar=no,status=no,scrollbars=yes,resizable=yes');
}
function fnjs_open_actwin(name, url)
{
  window.open(url, name, 'left=0,top=0,width=100,height=20,toolbar=no,menubar=no,status=no,scrollbars=no,resizable=no');
}


