#!/usr/bin/perl5 -w
# ´Á»ú¥³¡¼¥É EUC

#
use SIC;
use SICX::Comm::Site;

#
my $comm = SICX::Comm::Site->new();
my $jb = $comm->{cgi}->param('jb') || '';
my $module = join '::', 'SICX::Proc::S::ssi', $jb;

unless ($comm->start($module, 1)) {
    $comm->error();
}

#
$comm->finish();

#
exit(0);
