function getBackToOriginRequestData($obj) {
		$newReq['pntType'] = $this->getType();
		$newReq['id'] = $obj->get('id');
		$newReq['pntHandler'] = $this->getReqParam('pntHandlerOrigin'); //stips slashes but there are no slashes anyway
		$newReq['pntRef'] = $this->getReqParam('pntRef'); //stips slashes but there are no slashes anyway
		$newReq['pntEditFeedback'] = $this->getEditType($obj); //only to be included if redirect to same EditDetailsPage
		if (isSet($this->requestData['pntProperty']) && $this->requestData['pntProperty']) {
			$newReq['pntProperty'] = $this->requestData['pntProperty'];
			if (!isSet($newReq['pntHandler']))
				$newReq['pntHandler'] = 'PropertyPage';
		}

		if (isSet($this->requestData['pntContext']))
			$newReq['pntContext'] = $this->requestData['pntContext'];
		return $newReq;
	}