function OpenWindow(url, name, vwidth, vheight, vscreenX, vscreenY, vresizeable, vscrollbars, vmenubar) {
  NewWindow = window.open('' + url + '','' + name + '','width=' + vwidth + ',height=' + vheight + ',screenX=' + vscreenX + ',screenY=' + vscreenY + ',resizable=' + vresizeable + ',scrollbars=' + vscrollbars + ',menubar=' + vmenubar);
}
