<?php
require_once('functions/functions.php');
print_html_header('Mark Active');
print_access_check('K');
if (is_numeric($_GET['datafor']))
{
print_activate_ref($_GET['datafor']);
}
else
{
echo 'Error please go back and try again.';
}
print_html_footer();
?>