function view_cat2(s) {
	selected = s;
	obj = document.all['category'];
	
	obj.options[0] = new Option( '::¼ÒºÐ·ù¼±ÅÃ::', -1, true, true);
	if(selected == 0) {
		obj.options.length = 1;	
		return;
	}
	//alert(selected);
	obj.options.length = cat2[selected].length+1;
	for(j=0; j<cat2[selected].length; j++) {
		obj.options[j+1] = new Option(cat2[selected][j].name, cat2[selected][j].code);	
	}
	default_value = obj[0].value;
	default_value = obj[0].selected = true;
}

function del_confirm() {
	if(!confirm("»èÁ¦ÇÏ½Ã°Ú½À´Ï±î?")) return false;
}






//Ç³¼± µµ¿ò¸» ½ºÅ©¸³Æ®///////////////////////////////////////////////////////////////////////////

var tipTimer;

function locateObject(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=locateObject(n,d.layers[i].document); return x;
}

function hideTooltip(object)
{
if (document.all)
{
    locateObject(object).style.visibility="hidden"
    locateObject(object).style.left = 1;
    locateObject(object).style.top = 1;
return false
}
else if (document.layers)
{
    locateObject(object).visibility="hide"
    locateObject(object).left = 1;
    locateObject(object).top = 1;
    return false
}
else
    return true
}

function showTooltip(object,e, tipContent, backcolor, bordercolor, textcolor, displaytime)
{
    //window.clearTimeout(tipTimer)
    
    if (document.all)
        {
            locateObject(object).style.top=document.body.scrollTop+event.clientY+20
            
            locateObject(object).innerHTML='<table style="font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 11px; border: '+bordercolor+'; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; background-color: '+backcolor+'" width="10" border="0" cellspacing="1" cellpadding="1"><tr><td nowrap><font style="font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 11px; color: '+textcolor+'">'+unescape(tipContent)+'</font></td></tr></table> '

            if ((e.x + locateObject(object).clientWidth) > (document.body.clientWidth + document.body.scrollLeft))
                {    
                    locateObject(object).style.left = (document.body.clientWidth + document.body.scrollLeft) - locateObject(object).clientWidth-10;
                }
            else
            {
            locateObject(object).style.left=document.body.scrollLeft+event.clientX
            }
        locateObject(object).style.visibility="visible"
        //tipTimer=window.setTimeout("hideTooltip('"+object+"')", displaytime);
        window.setTimeout("hideTooltip('"+object+"')", displaytime);
        }
    else if (document.layers)
        {
        locateObject(object).document.write('<table width="10" border="0" cellspacing="1" cellpadding="1"><tr bgcolor="'+bordercolor+'"><td><table width="10" border="0" cellspacing="0" cellpadding="2"><tr bgcolor="'+backcolor+'"><td nowrap><font style="font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 11px; color: '+textcolor+'">'+unescape(tipContent)+'</font></td></tr></table><td></tr></table>')
        locateObject(object).document.close()
        locateObject(object).top=e.y+20

        if ((e.x + locateObject(object).clip.width) > (window.pageXOffset + window.innerWidth))
            {
                locateObject(object).left = window.innerWidth - locateObject(object).clip.width-10;
            }
        else
            {
            locateObject(object).left=e.x;
            }
        locateObject(object).visibility="show"
        //tipTimer=window.setTimeout("hideTooltip('"+object+"')", displaytime);
        window.setTimeout("hideTooltip('"+object+"')", displaytime);
    }
    else
    {
        return true
    }
}
//Ç³¼± µµ¿ò¸» ½ºÅ©¸³Æ®///////////////////////////////////////////////////////////////////////////

//ÇÐ°ú ·Î±×ÀÎ ÆË¾÷ Áß¾Ó¿¡ ¸ÂÃç¼­ ¶ç¿ì±â
function center_login_popup() {
	LeftPosition = (screen.width) ? (screen.width-596)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-256)/2 : 0;

	open("/xboard/login_pop.asp", "center_login_popup", "left="+LeftPosition+",top="+TopPosition+",width=596,height=256,scrollbars=0");
}
//ÇÐ°ú ·Î±×ÀÎ ÆË¾÷ Áß¾Ó¿¡ ¸ÂÃç¼­ ¶ç¿ì±â
