diff --git a/common.inc.php b/common.inc.php
index 2aea79b..c2c811d 100644
--- a/common.inc.php
+++ b/common.inc.php
@@ -155,6 +155,8 @@ if(count($config['languages'])>1)
+if($title)
+ echo "
$title
";
}
function send_footer()
diff --git a/register_judges.php b/register_judges.php
new file mode 100644
index 0000000..1ddd870
--- /dev/null
+++ b/register_judges.php
@@ -0,0 +1,7 @@
+
+ require("common.inc.php");
+ send_header("Judges Registration");
+
+
+ send_footer();
+?>
diff --git a/register_participants.php b/register_participants.php
new file mode 100644
index 0000000..8546565
--- /dev/null
+++ b/register_participants.php
@@ -0,0 +1,6 @@
+
+ require("common.inc.php");
+ send_header("Participant Registration");
+
+ send_footer();
+?>