#!/usr/bin/perl

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

use CGI ':standard';
use Vpanel 1.00;

# Get script name
$scriptname = $ENV{'SCRIPT_NAME'};
s/cgi-bin/vcgi-bin/;

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

$tab_section  = param('section');

if ( $tab_section == "" )
{
	$tab_section = 1;
}

print "<body class=section-$tab_section>";

print <<TABS;
	<TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR VALIGN=TOP><TR VALIGN=TOP><TD COLSPAN=3>
	<A HREF=http://ieinternet.com/index.htm><IMG SRC=/vpanel/images/logo_top.gif WIDTH=291 HEIGHT=58 BORDER=0
	ALT=Irelands leader for affordable web hosting, website hosting, email hosting, ecommerce hosting, 
	windows hosting, secure hosting, full anti-virus email screening, full anti-spam email screening, ieinternet.com 
	shared hosting, ieinternet.com sme hosting, irelands leading cost effective web hosting provider.ieinternet.com></A></TD>
	<TD COLSPAN=3><IMG SRC=/vpanel/images/dot.gif WIDTH=289 HEIGHT=51 BORDER=0></TD>
	<TD><A HREF=http://ieinternet.com/webmail><img src=http://ieinternet.com/images/my_webmail.gif 
	WIDTH=131 HEIGHT=51 ALT=Access your control panel here BORDER=0></A></TD></table>
	<ul id=menu>
TABS

# Output all the tabs

for ( $tabcount = 1 ; $tabcount <= $numberoftabs ; $tabcount++ )
{
	print "<li id=nav-$tabcount><a href=$scriptname?section=$tabcount><span class=text>$tab_headings[$tabcount-1]</span></a></li>\n";
} 
print "</ul>\n\n";

# Output the content associated with each tab
print "<div id=contents><p class=text>";

# Get the required files for each tab element

if ( $tab_section == 1 )
{
	require "tab_front.pl";
}

if ( $tab_section == 2 )
{
	print "section 2";
}
	
print <<FOOTER;
	<TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0>
	<tr>
	<TD align=center>
	<span class=vpanelcomments>
	[&nbsp;<a href=/vpanel/comments.shtml>Please send us your comments/suggestions</a>&nbsp;]</span><br><br>
	</TD>
	</TR>
	<tr>
	<td align=center><span class=homeprice><a href=/vpanel/><font color=#cc0000>Main Menu</a></span></td><br>
	<td align=center><span class=homeprice><a href=
	</tr>
	<TR VALIGN=TOP><TD><IMG SRC=/vpanel/images/dot.gif HEIGHT=3 BORDER=0></TD></TR>
	<TR VALIGN=TOP><TD align=center BGCOLOR=#CC0000><IMG SRC=/vpanel/images/dot.gif HEIGHT=7 BORDER=0></TD></TR>
	<TR VALIGN=TOP><TD class=copyright align=center><IMG SRC=/vpanel/images/home_logos.gif HEIGHT=46 WIDTH=750 BORDER=0>
	<center> Copyright 1998 -  2004 IE Internet.com Ltd. All Rights Reserved. </center></TD></TR></TABLE>
	</body>
	</html>
FOOTER
