<?php
    /*---------------------------------------------------+
    | PHP-Fusion 6 Content Management System
    +----------------------------------------------------+
    | Copyright © 2002 - 2005 Nick Jones
    | http://www.php-fusion.co.uk/
    +----------------------------------------------------+
    | Released under the terms & conditions of v2 of the
    | GNU General Public License. For details refer to
    | the included gpl.txt file or visit http://gnu.org
    +----------------------------------------------------*/
// If register_globals is turned off, extract super globals (php 4.2.0+)
if (!iADMIN) { header("Location:../../../index.php"); exit; }
if (ini_get('register_globals') != 1) {
	if ((isset($_POST) == true) && (is_array($_POST) == true)) extract($_POST, EXTR_OVERWRITE);
	if ((isset($_GET) == true) && (is_array($_GET) == true)) extract($_GET, EXTR_OVERWRITE);
}
	
    require_once "../../../maincore.php";
	require_once THEMES."templates/admin_header.php";
	

if (file_exists(INFUSIONS."song_charts_panel/locale/".$settings['locale'].".php")) {
	include INFUSIONS."song_charts_panel/locale/".$settings['locale'].".php";
} else {
	include INFUSIONS."song_charts_panel/locale/English.php";
}
opentable($locale['ctbs016']);
if ($func == "")
{
  $func = "entrys";
}
echo "<table width='100%' class='tbl-border'>
<tr>
    <td width='33%' class='tbl2' align='center'><a href='".$PHP_SELF."?func=entrys'>".$locale['ctbs017']."</a></td>
    <td width='33%' class='tbl2' align='center'><a href='".$PHP_SELF."?func=dellist'>".$locale['ctbs018']."</td>
    <td width='33%' class='tbl2' align='center'><a href='".$PHP_SELF."?func=reset'>".$locale['ctbs019']."</td>
</tr>
<tr>
<td colspan='4' class='tbl1'>";
include INFUSIONS."song_charts_panel/admin/".$func.".php";
echo "</td>
</tr>
</table>";
closetable();
    require_once THEMES."templates/footer.php";
?>