// JavaScript Document

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = window.open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,scrollbars=1,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

//  pop up window 
var articlenum;
function gourl()
{
articlenum = document.select_article.article_sel.value;
window.location.href="thispage?article=article" + articlenum;
}

function goSubCat(id)
{
        window.location.href="main.jsp?content=category-content.jsp&categoryId=" + id;
}

