<?PHP

$keyword_categories 
= array(
   
'bn'  => 'Business name',
   
'bpa' => 'Business postal address',
   
'bar' => 'Business area',
   
'bsa' => 'Business sub-area',
   
'sa'  => 'Service area',
   
's'   => 'Salutation',
   
'cn'  => 'Common name',
   
'fn'  => 'First name',
   
'ln'  => 'Last name',
   
'nn'  => 'Nickname',
   
'dob' => 'Date of birth',
   
'g'   => 'Gender',
   
'pa'  => 'Postal address',
   
'a1'  => 'Address line 1',
   
'a2'  => 'Address line 2',
   
'a3'  => 'Address line 3',
   
'tc'  => 'Town/City',
   
'sp'  => 'State/Province',
   
'pc'  => 'Postcode',
   
'c'   => 'Country',
   
'll'  => 'Latitude/Longitude',
   
'o'   => 'Organisation',
   
'd'   => 'Department',
   
'jt'  => 'Job title',
   
'hi'  => 'Hobbies/Interests',
   
'ft'  => 'Free text',
   
'di'  => 'address book information',
   
'nl'  => 'name affix',
   
'bi'  => 'Companies',
   
'ky'  => 'Keywords'                  
  
);

    
$service_prefixes = array(
   
'sip'              => array('SIP',''),                   
   
'h323'             => array('H232',''),                               
   
'voice:tel'           => array('Voice','tel:'),
   
'sms:tel'          => array('SMS','tel:'),
   
'ems:tel'          => array('EMS','tel:'),
   
'mms:tel'          => array('MMS','tel:'),
   
'fax:tel'          => array('Fax','tel:'),
   
'email:mailto'     => array('Email','mailto:'),
   
'sms:mailto'       => array('SMS (Mailto)','mailto:'),
   
'ems:mailto'       => array('EMS (Mailto)','mailto:'),
   
'mms:mailto'       => array('MMS (Mailto)','mailto:'),
   
'web:http'         => array('Weblink','http://'),
   
'web:https'        => array('Secure Weblink','https://'),
   
'ft:ftp'           => array('FTP','ftp://'),
   
'x-voice:aim'      => array('AIM Voice','aim:'),                   
   
'x-voice:skype'    => array('Skype Voice','skype:'),               
   
'x-voice:gtalk'    => array('Google Talk','gtalk:'),               
   
'x-voice:skype+x-im:skype' => array('Skype IM &amp; Voice','skype:'),       
   
'x-im:aim'         => array('AIM','aim:'),                       
   
'x-im:icq'         => array('ICQ','icq:'),                           
   
'x-im:msn'         => array('MSN','msn:'),                       
   
'x-im:skype'       => array('Skype IM','skype:'),                   
   
'x-im:xmpp'        => array('Jabber/XMPP','xmpp:'),                   
   
'x-im:ymsgr'       => array('Yahoo Messenger','ymsgr:'),                   
   
'x-user:name'      => array('Username','none:')
  );

?>