include_once('ressources/class.artica.inc');
	include_once('ressources/class.ini.inc');
	include_once('ressources/class.squid.inc');
	include_once('ressources/class.system.network.inc');

	$user=new usersMenus();
	if($user->AsSquidAdministrator==false){
		$tpl=new templates();
		echo "alert('". $tpl->javascript_parse_text("{ERROR_NO_PRIVS}")."');";
		die();exit();
	}
	
	if(isset($_POST["ActAsASyslogServer"])){ActAsASyslogServerSave();exit;}
	if(isset($_GET["inline"])){popup();exit;}
	if(isset($_GET["popup"])){popup();exit;}
	if(isset($_GET["appliance-settings"])){appliance_settings();exit;}
	if(isset($_GET["squid-settings"])){squid();exit;}
	
	
js();


function js(){
	$page=CurrentPageName();
	$tpl=new templates();
	$title=$tpl->_ENGINE_parse_body("{STATISTICS_APPLIANCE}");
	$html="YahooWin2(550,'$page?popup=yes','$title')";
	echo $html;
}

function popup(){
    exit;
}
if (isset($_POST["ActAsASyslogServer"])) {
    ActAsASyslogServerSave();
    exit;
}
if (isset($_GET["inline"])) {
    popup();
    exit;
}
if (isset($_GET["popup"])) {
    popup();
    exit;
}
if (isset($_GET["appliance-settings"])) {
    appliance_settings();
    exit;
}
if (isset($_GET["squid-settings"])) {
    squid();
    exit;
}
js();
function js()
{
    $page = CurrentPageName();
    $tpl = new templates();
    $title = $tpl->_ENGINE_parse_body("{STATISTICS_APPLIANCE}");
    $html = "YahooWin2(550,'{$page}?popup=yes','{$title}')";
    echo $html;
}