/**
  * Get URL to some page.
  * Returns the URL to page $id with $target and an array of additional url-parameters, $urlParameters
  * Simple example: $this->pi_getPageLink(123) to get the URL for page-id 123.
  *
  * The function basically calls $this->cObj->getTypoLink_URL()
  *
  * @param	object		tx_div2007_alpha_language_base object
  * @param	integer		Page id
  * @param	string		Target value to use. Affects the &type-value of the URL, defaults to current.
  * @param	array		Additional URL parameters to set (key/value pairs)
  * @param	array		Configuration
  * @return	string		The resulting URL
  * @see pi_linkToPage()
  */
 function getPageLink_fh001($langObj, $id, $target = '', $urlParameters = array(), $conf = array())
 {
     $rc = tx_div2007_alpha::getTypoLink_URL_fh001($langObj, $id, $urlParameters, $target, $conf);
     return $rc;
 }