function popup(url, w, h) {
  params = "toolbar=yes,menubar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes";
  if (w && h)
    params += ",width="+w+",height="+h;
  else
    params += ",width=600,height=450";
  window.open( url, "popup", params );
}
