function parseTopic(){

/* Unread Messages Indicator */
if($GLOBALS['user_id']==0) $GLOBALS['unreadicon']='';
else{

if(isset($GLOBALS['cols']) or (isset($GLOBALS['superStickyModule']) and isset($GLOBALS['colst'])) ){

if(!isset($GLOBALS['superStickyModule'])){
if($GLOBALS['action']=='') $chk=$GLOBALS['cols'][7]; else $chk=$GLOBALS['cols'][9];
}
else $chk=$GLOBALS['colst'][9];

if(!isset($GLOBALS['superStickyModule'])) $tid=$GLOBALS['cols'][0]; else $tid=$GLOBALS['colst'][0];
if( (!isset($GLOBALS['readTopics'][$tid]) and $chk>$GLOBALS['mslvPoint']) or (isset($GLOBALS['readTopics'][$tid]) and $chk>$GLOBALS['readTopics'][$tid] ) ) $GLOBALS['unreadicon']="<img src=\"{$GLOBALS['main_url']}/img/unread.svg\" style=\"width:8px;height:8px\" alt=\"Unread\" title=\"Unread\">&nbsp;"; else $GLOBALS['unreadicon']='';

}

}
/* --Unread Messages Indicator */

return;
}