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_openwin(name, url)
{
  window.open(url, name);
}
function fnjs_showPopup(name,url)
{
    window.open(url, name, "toolbar=0 scrollbars=yes  location=0 directories=0 menubar=0 statusbar=0 resize=1 width=500 height=50 left=70 top=30");
    return;
}


