<!--
// x = Window address
// y = Window name
// w = Window width
// h = Window height
var x,y = ""
var w,h = 100

function openWindow(x,y,w,h)
  {
  newWindow = window.open(x,y,"width=" + w + ",height=" + h + ",scrollbars,resizable");
  return true;
  }
// -->
