function msgbox($title, $text) { global $tpl; $tpl_2 = new dle_template( ); $tpl_2->dir = TEMPLATE_DIR; $tpl_2->load_template( \'info.tpl\' ); $tpl_2->set( \'{error}\', $text ); $tpl_2->set( \'{title}\', $title ); $tpl_2->compile( \'info\' ); $tpl_2->clear(); $tpl->result[\'info\'] .= $tpl_2->result[\'info\'];}function ShowRating($id, $rating, $vote_num, $allow = true) { global $lang; if( $rating ) $rating = round( ($rating / $vote_num), 0 ); else $rating = 0; $rating = $rating * 17; if( ! $allow ) { $rated = <<<HTML<div class=\"rating\" style=\"float:left;\"> <ul class=\"unit-rating\"> <li class=\"current-rating\" style=\"width:{$rating}px;\">{$rating}</li> </ul>