function openWindow(URL, width, height)
{
  features = 'menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height
  window.open(URL,'',features);
}