function popUp(ref){
  var strFeatures="toolbar=no,status=no,menubar=no,location=no"
  strFeatures=strFeatures+",scrollbars=yes,resizable=yes,height=375,width=400,left=250,top=150,screenX=250,screenY=150"

  newWin = window.open(ref,"TellObj",strFeatures);
  newWin.opener = top;
  newWin.focus();
}