function popUpPic(URL,width,height) {
  var inc_h= 29;
  var inc_w = 5;
  if(!height) height = 150;
  if(!width) width = 300;
  height = height + inc_h;
  width = width + inc_w;
  openWindow(URL,"picWindow",width,height,"scrollbars=no,status=no");
}

