#!/usr/bin/perl

print "Content-Type: Text/HTML\n\n";

use CGI ':standard';
use Vpanel 1.00;

print <<HEADING;
        <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN>
        <html>
        <head>
        <title>IE Internet Control Panel</title>
        <meta http-equiv=Content-Type content=text/html; charset=iso-8859-1>
        <link rel=stylesheet type=text/css href=/vpanel/home2.css>
        <link rel=stylesheet type=text/css  media=screen href=/vpanel/vpanel.css>
</head>

HEADING

# Define the tab which appears to the front
$tab_section = $tabnum_home;

# Create the body section associated with this tab
print "<body class=section-$tab_section>";

# display tabs
require $tabdisplay;

# output the contant of this tab
require $tab_front[$tab_section-1];

require $footer;
