<?php
include_once("header.html");
if (is_blocked()) include("blocked.html");
else
{
if (!isset($paypal_checked) AND paypal_enabled())
{
include("paypal-logos.html");
include("paypal-select-option.html");
}
else
{
include("register.html");
if (paypal_enabled()) include("paypal-logos.html");
}
}
include("footer.html");
?>