// <![CDATA[
/*
* Copyright: 2005 - this.year() CB.Net Ltd IT Department
* Note: The below is an array of errors used throughout validation and messages for javascript confirm
*
* @page errors.js
* @version 1.0/
* @author Greg Shiers, Jarratt Ingram (CB.Net Ltd)
* @copyright: CB.Net Ltd IT Department 2002 - this.year()
*/

/* Define the variables as arrays */
var error 	= [];
var message = [];
var imgs 	= [];

/*
* No function, just a list of errors for alerys
* @usage error[number]
* @returns string
* @version 1.0
*/
error[0] = "Username and password blank.\n";
error[1] = "Username can not be blank.\n";
error[2] = "Password can not be blank.\n";
error[3] = "<br />";
error[4] = "<br />";
error[5] = "<br />";
error[6] = "<br />";
error[7] = "<br />";
error[8] = "<br />";
error[9] = "<br />";

error[10] = "Please enter the entity name<br />";
error[11] = "Please enter the entity code<br />\n";
error[12] = "Please enter your branch code<br />\n";
error[13] = "Please enter your address line 1<br />";
error[14] = "Please enter your address line 2<br />";
error[15] = "Please enter your city<br />";
error[16] = "Please enter your post code<br />";
error[17] = "Please select the country<br />";
error[18] = "<br />";
error[19] = "<br />";
error[20] = "<br />";

/*
* No function, just a list of messages for confirms and other such
* @usage message[number]
* @returns string
* @version 1.0
*/
message[0] = "Logging you in, please wait...";
message[1] = "Are you sure you want to log out of your account?";

imgs[0]	= '<img src="/images/icons/progress.gif" width="16" height="20" alt="Progress indicator" title="Progress indicator" class="icor" />';
// ]]>
