/* -------------------------------------
select box ÀÌµ¿ 
-----------------------------------------*/

function goDeptUrl(value)
{
  if(value != ""){
    document.location.href=value;   
  }
}

/* -------------------------------------
select box ÀÌµ¿ _self
-----------------------------------------*/

function goselfDeptUrl(value)
{
  if(value != ""){
    window.open(value, "_self");   
  }
}

/* -------------------------------------
select box ÀÌµ¿ win »õ·Î¿îÃ¢
-----------------------------------------*/

function gowinDeptUrl(value)
{
  if(value != ""){
    window.open(value, "win");   
  }
}

/* -------------------------------------
»õÃ¢ ¶çÀ§±â ÇÔ¼ö
-----------------------------------------*/

function MM_openBrWindow(theURL,winName,features)
{ //v2.0
  window.open(theURL,winName,features);
}