/***************************************
* Alert Array for the resitration form
* Created: 18.12.04 -> 00:13am
* Modified: GS -> 18.12.04 @ 02:32am
*			GS -> 18.12.04 @ 09:23am 
			GS -> 19.12.04 @ 22:34pm
			GS -> 19.12.04 @ 23:03pm
			GS -> 28.12.04 @ 18:21pm
			MW - 3.1.05 @14.02 - changes to messages
* Note: Added Login array 19.12,  (from property)
		Added Contact array 19.12 (from property)
***************************************/


/*************************************************/
// Setttings for the registration form
var PasswdMaxLength = 15;
var PasswdMinLength = 6;
var	UsernameMinLength = 5;
var	UsernameMaxLength = 15;


// Alert arrays for the Registration form
var registerARR = new Array()
// College name
registerARR[0] = "Please Enter Company name (or) Your own Name";

// Contact first Name
registerARR[1] = "Please Enter first name";

// Contact first Name
registerARR[2] = "Please Enter surname name";

// Contact first Name
registerARR[3] = "Please Enter 1st line of address";

// Contact Last Name
registerARR[4] = "Please Enter town";

// Main telephone number
registerARR[5] = "Please Enter postcode";

// Enrolment telephone numer
registerARR[6] = "Please Enter a Valid telephone number";

// General Email
registerARR[7] = "Empty or non valid email";

// Username that must be more than 4 and less than 15
registerARR[8] = "Enter username\n"
				  +"Username cannot be less than "+UsernameMinLength+" charactors\n"
				  +"Username cannot be more than "+UsernameMaxLength+" charactors";

// pasword empty
registerARR[9] = "Enter password 1\n"
				 +"Password less than "+PasswdMinLength+" and no more than "+PasswdMaxLength+" charactors";

// Confirm password empty
registerARR[10] = "Confirm password 1\n"
				 +"Password less than "+PasswdMinLength+" and no more than "+PasswdMaxLength+" charactors";

// Passwords dont match
registerARR[11] = "Tne passwords do not match!";

// Select secret question
registerARR[12] = "Please select secret question";

// Secret question check
registerARR[13] = "Enter answer";

// Terms and conditions check
registerARR[14] = "Terms & conditions box not ticked\n"
			     +"Please tick box - to view T & C's click on link\n";
			     

// Comp name not filled in
registerARR[15] = "Please provide a Company Representative name (or your own name) if you are a private buyer or seller";


// Comp name not filled in
registerARR[16] = "Please select whether you are a Buyer or Seller?";

// Comp name not filled in
registerARR[17] = "Please indicate your position in the company";

// Comp name not filled in
registerARR[18] = "Please select your country";

/*************************************************/
// Alerts for the login form //
var loginARR = new Array()

// login username
loginARR[0] = "Enter username";

// Login password
loginARR[1] = "Enter password";


// Login password
loginARR[2] = "Please select whether you are a buyer or seller?";

/*************************************************/

// Alerts for the Contact form //
var contactARR = new Array()

// first name
contactARR[0] = "Enter name";

// Email address
contactARR[1] = "Enter valid email";

// Leave Comment
contactARR[2] = "Enter your telephone number";


// Leave Comment
contactARR[3] = "Leave a comment";

/*************************************************/

// Alerts for the Change password form //
var changeARR = new Array()

// New passwor no less than PasswdminLength and no more than PasswdmaxLength
changeARR[0] = "Enter New password\n"
			   +"New password cannot be less than "+PasswdMinLength+" charactors\n"
			   +"New password cannot be more than "+PasswdMaxLength+" charactors";

// Confirm passwor no less than PasswdminLength and no more than PasswdmaxLength
changeARR[1] = "Confirm\n"
			   +"Confirm password cannot be less than "+PasswdMinLength+" charactors\n"
			   +"Confirm password cannot be more than "+PasswdMaxLength+" charactors";

// Password dont match
changeARR[2] = "New password don't match";

// Enter old password	
changeARR[3] = "Old passowrd field is blank";


/*************************************************/

// Alerts for the Send to friend form //
var friendARR = new Array()

// first name
friendARR[0] = "Enter name";

// Email address
friendARR[1] = "Enter valid email";

// Email address
friendARR[2] = "Enter valid email to send to";

// Leave Comment
friendARR[3] = "Please complete/notes box";

/*************************************************/

/*************************************************/

// Alerts for the Request form //
var requestARR = new Array()

// first name
requestARR[0] = "Enter name";

// Email address
requestARR[1] = "Enter valid email";

// Email address
requestARR[2] = "Please fill in your telephone number ";

// Email address
requestARR[3] = "Please leave a comment";