#!/bin/ksh
#
#ident	"@(#)about	1.15	04/12/08 SMI"
#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# Original Author: Michael Koller
#

# variables
hctsdir=SUNWhcts			# base directory
hname=$1			# test system
act=				# action to be taken
prgdir=prgs			# program directory
i=0				# loop counter

# functions

# do function
go_fun()
{
	$prgdir/funcs "$*" 2>&1
}

### MAIN ###

# change to base directory
cd `dirname $0`
while [ `basename $PWD` != $hctsdir ]
do
	cd ..
done

# parse input 
if [ -n "$CONTENT_LENGTH" ]
then
	eval `$prgdir/pq.p`
	CONTENT_LENGTH=
fi

# About Team 
if [ -z "$act" ]
then
	go_fun bhtml $hname "help"
	echo "<B>Hardware Certification Test Suite</B><BR>
	Version 2.4.1<BR>
	Release Date:  July 2005<BR>"
	go_fun ehtml
fi
