// <![CDATA[
/*
* Copyright: 2005 - 2007 SI Works Internet Solutions
* If you have come across this page, its cause you are snooping through code, and are generally a developer as such
* If you would like to use some of the code on this page, please simply email support@siworks.co.za and ask permission
* it would be much appreciated, as we have worked very hard on these func.tions() and scri.pts()
*
* The page is a config page for all constants within the application 
* @page config.js
* @version 1.0.2
* @author Greg Shiers, Jarratt Ingram (SI Works Internet)
* @copyright: SI Works Internet Solutions 2005 - 2007
*/

// Admin email address, when errors get generated in the scripts
// AJAX to fire through an email to the admin.
var ADMIN_EMAIL = "support@siworks.co.za";

// Variables for minimum and maximum or set number variables
var PASSWORD_MIN 	= 6;
var PASSWORD_MAX 	= 15;

var USERNAME_MIN 	= 6;
var USERNAME_MAX 	= 15;
var SMS_COUNT_LIMIT = 160;
// Variables for dyanmic options
var splitter = ',';
// ]]>