function popWin(url, w, h) {
  options = 'toolbar=0,status=1,scrollbars=1,resizable=1,width=' + w + ',height=' + h + ',left=20,top=20';
  newWin = window.open(url, '', options);
  newWin.focus();
  return false;
}
