| 
<?
/*    =======================================
 Copyright 1998, 2000, 2003, 2007, 2009 - E Net Arch
 www.ENetArch.net - 248-686-1407
 ENetArch on AIM, Yahoo, and Skype
 
 This program is distributed under the terms of the GNU
 General Public License (or the Lesser GPL).
 ======================================= */
 
 Function CreateClass ($thsName, $nBaseType, $ofClass, $bAcceptsAll, $szStr="")
 {
 Global $gblLadder;
 
 printf ("Adding Class %s<BR>", $thsName);
 
 $gblLadder->CreateClass ($thsName, $nBaseType, $ofClass, $bAcceptsAll, $szStr);
 }
 
 ?>
 |