/**
 * Check to see if this impression contains the valid postcode.
 *
 * @param string $limitation The postcode (or comma list of postcodes) limitation
 * @param string $op The operator (either '==' or '!=')
 * @param array $aParams An array of additional parameters to be checked
 * @return boolean Whether this impression's postcode passes this limitation's test.
 */
function MAX_checkGeo_Postalcode($limitation, $op, $aParams = array())
{
    return MAX_limitationsMatchStringClientGeo('postal_code', $limitation, $op, $aParams);
}
/**
 * Check to see if this impression contains the valid organisation.
 *
 * @param string $limitation The organisation limitation
 * @param string $op The operator (either '==' or '!=')
 * @param array $aParams An array of additional parameters to be checked
 * @return boolean Whether this impression's organisation passes this limitation's test.
 */
function MAX_checkGeo_Organisation($limitation, $op, $aParams = array())
{
    return MAX_limitationsMatchStringClientGeo('organisation', $limitation, $op, $aParams);
}
/**
 * Check to see if this impression contains the valid area code.
 *
 * @param string $limitation The area code limitation
 * @param string $op The operator (either '==' or '!=')
 * @param array $aParams An array of additional parameters to be checked
 * @return boolean Whether this impression's area code passes this limitation's test.
 */
function MAX_checkGeo_Areacode($limitation, $op, $aParams = array())
{
    return MAX_limitationsMatchStringClientGeo('area_code', $limitation, $op, $aParams);
}