<!--
function NewWindow(url, title,width, height, menubar)
{
var winObj = window.open(url,
                         title,
                         "toolbar = no,\
                         location = no,\
                         directories = no,\
                         status = no,\
                         menubar = " + menubar + "," +
                         "scrollbars = yes,\
                         resizable = yes,\
                         width = " + width + "," +
                         "height = " + height + "," +
                         "top = 100, left = 0");

  winObj.focus();
  return false;
}
// -->
