/***************************************
* 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 @ 5.1.04 - some spelling & error corrections
* Note: Added Login array 19.12,  (from training)
		Added Contact array 19.12 (from training)
MW - 12.1.05 @ 15.21 the error message for company type & products selected was wrong - corrected
***************************************/


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

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

// Contact first Name
registerARR[1] = "Enter address line";

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

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

// Enrolment telephone numer
registerARR[4] = "Enter valid phone";

// General Email
registerARR[5] = "Empty or Non valid email";

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

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

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

// Passwords dont match
registerARR[9] = "Passwords don't match!";

// Select secret question
registerARR[10] = "Select secret question";

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

// Terms and conditions check
registerARR[12] = "Terms not ticked/accepted\n"
			     +"Please tick box - to view our Terms & Conditions click on link";
			    

// Comp name not filled in
registerARR[13] = "Please provide a Company Contact Name";


// Company Type
registerARR[14] = "Please indicate the type of company your are";

// Product checkbox's 
registerARR[15] = "Please tick the boxes corresponding to the products that you sell / manufacture";

// Position in comapny
registerARR[16] = "Please indicate your current position in the comapny";

// Position in comapny
registerARR[17] = "Please select a country";

/*************************************************/
// Alerts for the searching form //
var searchARR = new Array()

// search by college
searchARR[0] = "Enter College to search";

// Search by town
searchARR[1] = "Enter town";

// Search by postcode
searchARR[2] = "Enter postcode";

// Search by coarse shedule
searchARR[3] = "Select course schedule";


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

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

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

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

// 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] = "Please fill in a valid phone number";


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

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

// 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 select the product(s) you are interested in ";

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

// 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";

// Leave Comment
friendARR[2] = "Leave a comment";

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