function openwin (id, ident, my_width, my_height, my_left, my_top)
  {

    win=window.open(id, ident," top="+my_top+", left="+my_left+", height="+my_height+", width="+my_width+", resizable=no, menubar=no, scrollbars=no, toolbar=no, location=no, statusbar=no, alwaysRaised=yes, dependent=no")
    win.focus();
  }

