print "<table width=60% class=text border=0>";

if ( ( $hostingplan ne "SOHO" ) || ( check_if_allowed_on_soho($create_database) eq "yes" ) )
{
	if ( is_ip_address_local($web_site_ip_address) ne "windows" && is_ip_address_local($web_site_ip_address) ne "plesk" )
	{
		@databases = find_databases($domainname);
		$num_databases = @databases;

		if ( $num_databases == 0 )
		{
			print "<tr valign=middle><td width=50%>Add a database to your account</td><td>";
			show_option ($create_database);
			show_help ($create_database);
			print "</td> </tr>";
			$num_feature_displayed++;
		}
	}
}

if ( ( $hostingplan ne "SOHO" ) || ( check_if_allowed_on_soho($create_shop) eq "yes" ) )
{
	if ( check_if_shop_exists($domainname) eq "no" )
	{
		print "<tr valign=middle><td width=50%>Add a shop to your website</td><td>";
		show_option ($create_shop);
		show_help ($create_shop);
		print "</td> </tr>";
		$num_feature_displayed++;
	}
}

print "</table>";

if ( $num_feature_displayed == 0 )
{
	if ( $hostingplan eq "SOHO" )
	{
		print "Sorry, but your account does not have any additional features to install.<BR><BR>";	
	} else {
		print "Sorry, but it seems that you have installed all additional features on your account.<BR><BR>"; 
	}
}
print "";
