<!--
/*
function openwin (theURL, wName, width, height, posX, posY) {

  if (posX == null) posX = Math.ceil ((screen.width - width) / 2);
  if (posY == null) posY = Math.ceil ((screen.height - height) / 2);

  var s = ",width=" + width + ",height=" + height + ",left=" + Math.ceil (posX) + ",top=" + Math.ceil (posY);
  var myOpenWin = window.open (theURL, wName, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1" + s);

  myOpenWin.focus ();
  return myOpenWin;

}
*/
function openwin (theURL, wName, width, height, posX, posY, scroll, resize) {

  if (posX == null) posX = Math.ceil ((screen.width - width) / 2);
  if (posY == null) posY = Math.ceil ((screen.height - height) / 2);

  var s = ",width=" + width + ",height=" + height + ",left=" + posX + ",top=" + posY + ",scrollbars=" + scroll + ",resizable=" + resize;
  var myOpenWin = window.open (theURL, wName, "toolbar=0,location=0,directories=0,status=0,menubar=0" + s);

  myOpenWin.focus ();
  return myOpenWin;

}

// -->
