function sPopupNamed(path,width,height,named)
{
  var win, completepath;

  completepath = path;
  win = window.open(completepath,named,'width='+width+',height='+height+',screenX=100,screenY=80,left=100,top=80,resizable=yes,location=no,toolbar=no,directories=no,status=no,scrollbars=no,menubar=no');
  win.focus();
}

