File size: 552B
<?
function aut($title=NULL)
{
global $set;
if ($set['web'] == false)
{
if ($title == NULL)
$title = $set['title'];
if ($_SERVER['PHP_SELF'] != '/index.php' && $_SERVER['PHP_SELF'] != '/info.php' && $_SERVER['PHP_SELF'] != '/aut.php')
{
echo '<table cellspacing="0" cellpadding="0"><tr>';
echo '<td class="titles">';
echo '<a href="/index.php"><img src="/style/themes/vkwap/ico/thome.png" alt="DS" /></a>';
echo '</td>';
echo '<td class="title">' . $title . '</td>';
echo '</table>';
}
}
}
?>