HTML.INC
----------------------------------------------------------------------------------
USAGE:
   $INCLUDE "html.inc"
   Meant to be used in conjuction with CGI.INC, but can be used stand-alone
   
FUNCTIONS:
NOTE: all functions output to STDOUT (console). To change this, feel free to modify the
source code.

   FormStart (FormName as string,FormMethod as string,FormAction as string)
	    This function prints the standard HTML tags for a form. 

   TextArea (Name as string, Size as integer) 
   	 Prints a line input text box 

   RadioButton (strName as string, strValue as string, intChecked as integer) 
   	 Creates a radio button. If intChecked<>1 then default value is unchecked

   CheckBox (strName as string, strValue as string, intChecked as integer) 
   	 Creates a Check Box. If intChecked<>1 then default value is unchecked

   BeginSelect (strName as string) 
   	 Starts a <SELECT....> Element

   SelectItem (strItem as string)
   	 Adds an item to a <SELECT> Element

   EndSelect()
   	 Ends a  <SELECT> Element

   TextField (strName as string, intCols as integer,intRows as integer) 
   	 Creates a mulit-line text area 

   PwdField (strName as string,intSize as integer,intMaxLen as integer)
   	  Creates a password field

   Button (strType as string, strName as string, strValue as string)
   	  Creates a button of the specified type. Types are SUBMIT, RESET or NONE

   a (strURL as string)
   	   Inserts an <A HREF="...> Tag into the page 

   Image (strSrc as string, intHeight as integer, intWidth as integer, intBorder as integer)
   	  Inserts an image on the page 

   Enda ()
   	  Inserts a </A> tag into the page 
