// JavaScript Document

function popUp(ref,height,width){
	height = (height == undefined) ? 500 : height;
	width  = (width == undefined) ? 600 : width;
  var strFeatures="toolbar=no,status=no,menubar=no,location=no,"
  strFeatures=strFeatures+",scrollbars=yes,resizable=yes,height=" + height + ",width=" + width + ",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();
}