/***************************************
* 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
			JI -> 30.05.05 @ 13.00pm Updated registerArr
***************************************/


/*************************************************/
// 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 Name of Place of Learning";

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

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

//Position
registerARR[3] = "Enter position";

// Main telephone numer
registerARR[4] = "Enter valid main telephone number";

// Enrolment telephone numer
registerARR[5] = "Enter valid enrolment telephone number";

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

// Enrolment Email
registerARR[7] = "Empty or Non valid enrolment email";

// Address line 1 
registerARR[8] = "Enter an Address on line 1";

// Town 
registerARR[9] = "Enter a Town";

// Postcode
registerARR[10] = "Enter a Postcode";

// Country
registerARR[11] = "Select a Country";

// Qualifications  Checkbox
registerARR[12] = "Please tick the boxes of the courses that you offer";

// Course Schedule Checkbox
registerARR[13] = "Please tick the course schedules that you offer";


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

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

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

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

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

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

// Terms and conditions check
registerARR[20] = "Terms not ticked/accepted\n"
			     +"Please tick box - to view our Terms & Conditions click on link";
			    
// Country
registerARR[21] = "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";

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