// JavaScript Document

function popUp(ref){
  var strFeatures="toolbar=no,status=no,menubar=no,location=no"
  strFeatures=strFeatures+",scrollbars=yes,resizable=yes,height=375,width=500,left=100,top=100,screenX=100,screenY=100"
	ref += '.php';
  newWin = window.open(ref,"TellObj",strFeatures);
  newWin.opener = top;
  newWin.focus();
}

function helpPopUp(ref){
  var strFeatures="toolbar=no,status=no,menubar=no,location=no"
  strFeatures=strFeatures+",scrollbars=yes,resizable=yes,height=375,width=500,left=100,top=100,screenX=100,screenY=100"
  newWin = window.open(ref,"TellObj",strFeatures);
  newWin.opener = top;
  newWin.focus();
}