function popImage(productID, ht, wd)
{
  // File name and variable passing
  var pageName = "selectImage";
  var pageUrl = "/popImage.php";
  var passVar1 = "?productID=" + productID;
  var destUrl = pageUrl + passVar1;

  // Make room for the browser stuff
  // var ht = ht + 20;
  // var wd = wd + 20

  // Properties of the new window
  var w = new Array();
  w = w.concat("width=" + wd);
  w = w.concat("height=" + ht);
  w = w.concat("resizable=no");
  w = w.concat("scrollbars=no");
  w = w.concat("toolbar=no");
  w = w.concat("menubar=no");
  w = w.concat("status=yes");
  w = w.concat("dependent=no");
  w = w.concat("location=no");
  winProperties = w.join(",");

  // Launch new window
  var newWin = window.open(destUrl, pageName, winProperties);
}

