<?php
foreach ($HTTP_GET_VARS as $key=>$value){
  if (preg_match("/^\<script/", $value)){
    $HTTP_GET_VARS[$key] = NULL;
	$$key = NULL;
  }
}

global $current_mod, $current_op;

if($mod)
{
	$current_mod = $mod;
	$current_op = $op;
	include("./mod/$mod/index.php4");
}
else Header("Location: ./index.php4");

?>
