<?

require_once('includes_path.php');

// Includes - the first one contains language settings too.
require_once("$includes_path/settings.inc");
require_once("$includes_path/globalfunctions.inc");
if(isset($_GET['url']))
{
	$url=$_GET['url'];
	RedirectBanner($url);
	header("Location: $url");
}
else
	header("Location: /");
exit;
?>