File size: 770B
<?
function aut($title=NULL)
{
global $set;
if ($set['web'] == false)
{
if ($title == NULL)
$title = $set['title'];
echo '<table cellspacing="0" cellpadding="0"><tr>';
if ($_SERVER['PHP_SELF'] != '/index.php')
{
echo '<td width="34%" class="titl2">';
echo '<a href="/index.php"><img width="28px" src="/style/img/controls-editor-home@128px.png" alt="" /></a>';
echo '</td>';
}
echo '<td width="34%" class="titl"><span style="float:center;">' . $title . '</span></td>';
echo '<td width="34%" class="titl"><span style="float:right;"><a href="?'.rand(1000,9999).'"><img width="28px" src="/style/img/controls-editor-loading@128px.png" alt="" /></a></span></td>';
echo '</tr></table>';
}
}
?>