function parseMessage(){

/* Show Online Status */
//special condition - by default the status is displayed to all members (not guests!); however it's possible to achieve that if the hidden mode is enabled, it will be shown to admin only and those members who have set their status to Yes.

$extraOnline=TRUE;
//$extraOnline=($GLOBALS['user_id']==1 or (isset($GLOBALS['user_online']) and $GLOBALS['user_online']==1));

if($GLOBALS['poster_id']!=0 and $GLOBALS['user_id']>0 and $extraOnline){
if(isset($GLOBALS['usersOnline'][$GLOBALS['poster_id']])) { $uo=1; $alt=$GLOBALS['l_onlineNow']; } else { $uo=0; $alt=$GLOBALS['l_onlineNo']; }
if($uo>0) $GLOBALS['uoIcon']="&nbsp;<img src=\"{$GLOBALS['main_url']}/img/online_status.svg\" style=\"width:7px;height:7px\" alt=\"{$alt}\" title=\"{$alt}\" class=\"vmiddle\">"; else $GLOBALS['uoIcon']='';
}
else $GLOBALS['uoIcon']='';

/* --Show Online Status */

}