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