Instruction to install the template changer created by pbflash.

1. Create a new folder in the addons directory named templatechanger.
2. Upload addon.inc to the new folder.
3. Place {addon_templatechanger_select} where you want the template selctor to appear. This can be on the Welcome page or in each templates main.html page.
4. In common.php search for $config["template"] = $recordSet->fields["controlpanel_template"]; and replace it with
   if (isset($_SESSION["template"]))
   {
   $config["template"] = $_SESSION["template"];
   }
   else
   {
   $config["template"] = $recordSet->fields["controlpanel_template"];
   }
