function NGC_Go_URL(URL,TARGET_WINDOW,left,top,width,height,use_scroll)
{
  if (URL != '')
  {
    if(TARGET_WINDOW == 'POP_UP')
      window.open(URL,TARGET_WINDOW,'left='+left+',top='+top+',width='+width+',height='+height+',scrollbars='+use_scroll+',resizable=yes');
    else
      window.open(URL,TARGET_WINDOW);
  }
}


