
function create_viewer(location, w, h)
{
  params  = 'toolbar=0, location=0, directories=0, status=0, menubar=0, ';
  params += 'scrollbars=1, resizable=0';
  viewer  = window.open("", "viewer", params);

  viewer.resizeTo(w, h);
  viewer.location = location;
}

