function wo(value, w, h)
{
  if (w==undefined) w = "500";
  if (h==undefined) h = "650";
  window.open(value, '', 'width='+w+', height='+h);
}

