
/*Object to store the messages.*/
function validateMessage(a,b){
    this.validationNo = a;
    this.validationMessage = b;
}

/* function to show help */
function getHelp(url){
        window.open(url,"Help", "width=500,height=400,center,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes");
}


/* Function to get the message .*/

function getMessage(moduleName,messageNo,arrayPassed){

        var appendedTemp = "";
        var restTemp = "";
        var newTemp = "";
        var temp = "";
        for(var i=0;i < eval(moduleName+"_Messages.length");i++){
                if(eval(moduleName+"_Messages["+i+"].validationNo")==messageNo){
                    var temp = new String(eval(moduleName+"_Messages["+i+"].validationMessage"));
                        //alert("temp.."+temp);
                }
        }
        if(getMessage.arguments.length == 3){
        var dollarOccurence = new Array(arrayPassed.length);
            for(var i=0;i<arrayPassed.length;i++){
                    dollarOccurence[i] = temp.indexOf('$$',0);
                    restTemp = temp.substr(dollarOccurence[i]+2,temp.length);
                        //alert("now restTemp.."+restTemp);
                    newTemp = temp.substr(0,dollarOccurence[i])+arrayPassed[i];
                        //alert("now newTemp.."+newTemp);
                    appendedTemp = newTemp + restTemp;
                        //alert("now appendedTemp.."+appendedTemp);
                    temp = newTemp+restTemp;
                        //alert("now temp.."+temp);

           }
        }

        if(temp == null){
        var errorStr =  "ERROR: Message not found in ValidationMessage File,Function Returning Null.";
        errorStr += "Module Name : ";
        errorStr += moduleName;
        errorStr += "Message Number : ";
        errorStr += messageNo;
        //return "ERROR: Message not found in CMSValidationMessage File,Function Returning Null, \n Parameters Passed : Module Name :"+;
        return errorStr;
        }else{

                return temp;
        }

}//End of function



/* Registration Messages starts from   */
REGISTRATION_Messages = new Array();
MARKETING_Messages = new Array();

/* Registration Module Common */

REGISTRATION_Messages[0]= new validateMessage('501',"Please select a $$.");
REGISTRATION_Messages[1]= new validateMessage('502',"$$ can have $$ only");
REGISTRATION_Messages[2]= new validateMessage('503',"$$ can have a maximum of only $$ characters");
REGISTRATION_Messages[3]= new validateMessage('504',"Please enter valid characters: $$ for $$");
REGISTRATION_Messages[4]= new validateMessage('505',"Please enter $$");
REGISTRATION_Messages[5]= new validateMessage('506',"$$ should be greater than $$");
REGISTRATION_Messages[6]= new validateMessage('507',"Please select atleast one Preferred $$");
REGISTRATION_Messages[7]= new validateMessage('508',"Please enter a valid $$");
REGISTRATION_Messages[8]= new validateMessage('509',"$$ should be between $$ and $$ characters long");
REGISTRATION_Messages[9]= new validateMessage('510',"$$ length should be less than or equal to  $$");
REGISTRATION_Messages[10]= new validateMessage('511',"Please ensure that your password is not the same as your User Id.");
REGISTRATION_Messages[11]= new validateMessage('512',"Create Password and Confirm Password do not match. Please re-enter.");
REGISTRATION_Messages[12]= new validateMessage('513',"Please check at least one value");
REGISTRATION_Messages[13]= new validateMessage('514',"The field is exceeding the character-limit of $$ characters");
REGISTRATION_Messages[14]= new validateMessage('515',"Please click on Next to submit your Registration information.");
REGISTRATION_Messages[15]= new validateMessage('516',"All date fields: day, month and year should be selected");
REGISTRATION_Messages[16]= new validateMessage('517',"You have specified that your Permanent Address is the same as your Mailing Address."
                                                                                                        +" You need not re-enter your Permanent Address.");
REGISTRATION_Messages[17]= new validateMessage('518',"Select a country before selecting the state.");
REGISTRATION_Messages[18]= new validateMessage('519',"We recommend that you go through the Terms and Conditions and then check the appropriate box.");
REGISTRATION_Messages[19]= new validateMessage('520',"You have not selected \"Ready To Work for Visilent\". You will not be "+
                                                                                                   "considered for positions in your residence country. Do you want to continue with the registration?");

REGISTRATION_Messages[20]= new validateMessage('521',"Data has already been added for the same location");
REGISTRATION_Messages[21]= new validateMessage('522',"Please select the Minimum Desired Rate, Maximum Desired Rate and the Currency Type together.");
REGISTRATION_Messages[22]= new validateMessage('523',"Please ensure that the Maximum Range of Desired Rate is greater than the Minimum Range of Desired Rate");
REGISTRATION_Messages[23]= new validateMessage('524',"Please ensure that the Selected Date is Greater than or Equal To the Current Date");
REGISTRATION_Messages[24]= new validateMessage('525',"Please enter a Notice Period between 0 and 99 ");
REGISTRATION_Messages[25]= new validateMessage('526',"Invalid data entered for the Years of Experience. Please enter a value between 0 and 99 only");
REGISTRATION_Messages[26]= new validateMessage('527',"Please add an Administrator");
REGISTRATION_Messages[27]= new validateMessage('528',"Please ensure that the Primary and the Secondary Disciplines are not the same");
REGISTRATION_Messages[28]= new validateMessage('529',"You will not be allowed to Save until you check the Terms and Conditions checkbox. "+
                                                                                                        "It is recommended that you actually go through the Terms and Conditions first.");
REGISTRATION_Messages[40]= new validateMessage('530',"Please ensure that the Selected Date is lesser than the Current Date");
REGISTRATION_Messages[29]= new validateMessage('550',"This link is under Construction");
REGISTRATION_Messages[30]= new validateMessage('551',"Duplicate groups are not allowed");
REGISTRATION_Messages[31]= new validateMessage('552',"No groups are available for which administrators can be added");
REGISTRATION_Messages[41]= new validateMessage('553',"Confirm Email does not match the Contact Email");

REGISTRATION_Messages[34]= new validateMessage('554',"Please enter the Home Phone number.");
REGISTRATION_Messages[35]= new validateMessage('555',"Please enter the Work Phone number.");
REGISTRATION_Messages[36]= new validateMessage('556',"Please enter the Mobile number.");
REGISTRATION_Messages[37]= new validateMessage('557',"Please enter the Fax number.");

REGISTRATION_Messages[38]= new validateMessage('558',"Please select a Primary Discipline");
REGISTRATION_Messages[32]= new validateMessage('559',"A person by this name having the same Email id already exists. Please try a different name and Email id");
REGISTRATION_Messages[33]= new validateMessage('560',"Please add some users before you proceed");
REGISTRATION_Messages[39]= new validateMessage('561',"Please select your Preferred Work Locations");
REGISTRATION_Messages[42]= new validateMessage('562',"Please upload your CV");
REGISTRATION_Messages[43]= new validateMessage('563',"There are no changes in the Preferred Agency List to Save.");
REGISTRATION_Messages[44]= new validateMessage('564',"Please create $$");
REGISTRATION_Messages[45]= new validateMessage('565',"You have not selected \"Ready To Work for Visilent\". You will not be "+"considered for positions in your Residence Country.");
REGISTRATION_Messages[46]= new validateMessage('566',"User Name cannot be modified.");
REGISTRATION_Messages[47]= new validateMessage('567',"$$ and $$ should be the same");
REGISTRATION_Messages[48]= new validateMessage('568',"Please ensure that the Selected Date is Lesser than or Equal to the Current Date");
REGISTRATION_Messages[49]= new validateMessage('569',"Please enter Company Name.");
REGISTRATION_Messages[50]= new validateMessage('570',"<,> and \\ and double-quotes are not allowed for Company Name.");

REGISTRATION_Messages[51]= new validateMessage('571',"Please enter your First Name.");
REGISTRATION_Messages[52]= new validateMessage('572',"Please enter valid characters: <(a-z) (A-Z) ( )> for the First Name.");
REGISTRATION_Messages[53]= new validateMessage('573',"First Name length should be lesser than or equal to 50.");

REGISTRATION_Messages[54]= new validateMessage('574',"Please enter your Surname.");
REGISTRATION_Messages[55]= new validateMessage('575',"Please enter valid characters: <(a-z) (A-Z) ( )> for the Surname.");
REGISTRATION_Messages[56]= new validateMessage('576',"Surname length should be lesser than or equal to 50.");

REGISTRATION_Messages[57]= new validateMessage('577',"Please enter valid characters: <(a-z) (A-Z) (0-9)( )(-) (.) (() ())> for Work Phone number.");
REGISTRATION_Messages[58]= new validateMessage('578',"Work Phone number should be between 10 and 20 characters long.");

REGISTRATION_Messages[59]= new validateMessage('579',"Please enter valid characters: <(a-z) (A-Z) (0-9)( )(-) (.) (() ())> for Home Phone number.");
REGISTRATION_Messages[60]= new validateMessage('580',"Home Phone number should be between 10 and 20 characters long.");

REGISTRATION_Messages[61]= new validateMessage('581',"Please enter the Pager number.");
REGISTRATION_Messages[62]= new validateMessage('582',"Please enter valid characters: <(a-z) (A-Z) (0-9)( )(-) (.) (() ())> for Pager number.");
REGISTRATION_Messages[63]= new validateMessage('583',"Pager number should be between 10 and 20 characters long.");

REGISTRATION_Messages[64]= new validateMessage('584',"Please enter valid characters: <(a-z) (A-Z) (0-9)( )(-) (.) (() ())> for Fax number.");
REGISTRATION_Messages[65]= new validateMessage('585',"Fax number should be between 10 and 20 characters long.");

REGISTRATION_Messages[66]= new validateMessage('586',"Please enter Email Address.");
REGISTRATION_Messages[67]= new validateMessage('587',"Please enter a valid Email Address.");
REGISTRATION_Messages[68]= new validateMessage('588',"Please confirm the Email Address.");

REGISTRATION_Messages[69]= new validateMessage('589',"Please select a Preferred Contact Mode.");

REGISTRATION_Messages[70]= new validateMessage('590',"Please enter Address 1.");
REGISTRATION_Messages[71]= new validateMessage('591',"Please enter valid characters: <(a-z)(A-Z)(0-9)(.)(-)(#)(,)( )> for Address 1.");
REGISTRATION_Messages[72]= new validateMessage('592',"Address 1 should be between 3 and 50 characters long.");

REGISTRATION_Messages[73]= new validateMessage('593',"Please enter valid characters: <(a-z)(A-Z)(0-9)(.)(-)(#)(,)( )> for Address 2.");
REGISTRATION_Messages[74]= new validateMessage('594',"Address 2 should be between 3 and 50 characters long.");

REGISTRATION_Messages[75]= new validateMessage('595',"Please select a Country.");
REGISTRATION_Messages[76]= new validateMessage('596',"Please select a Region.");
REGISTRATION_Messages[77]= new validateMessage('597',"Please enter the City/Town.");
REGISTRATION_Messages[78]= new validateMessage('598',"Please enter only alphabets for the City/Town name");
REGISTRATION_Messages[79]= new validateMessage('599',"Length of the City/Town name should be lesser than or equal to 50.");

REGISTRATION_Messages[80]= new validateMessage('600',"Please enter the Postcode.");
REGISTRATION_Messages[81]= new validateMessage('601',"Please enter valid characters: <(a-z)(A-Z)(0-9)( )> for the Postcode.");
REGISTRATION_Messages[82]= new validateMessage('602',"Postcode should be between 1 and 10 characters long.");

REGISTRATION_Messages[83]= new validateMessage('603',"Please select a Time Zone.");
REGISTRATION_Messages[84]= new validateMessage('604',"Please select a Company Size.");
REGISTRATION_Messages[85]= new validateMessage('605',"Please select a Company Type.");
REGISTRATION_Messages[86]= new validateMessage('606',"Please select an Administrator.");
REGISTRATION_Messages[87]= new validateMessage('607',"Please enter the Staffing Commission Rate.");
REGISTRATION_Messages[88]= new validateMessage('608',"Please enter the Markup.");
REGISTRATION_Messages[89]= new validateMessage('609',"Please enter a valid number for Staffing Commission Rate.");
REGISTRATION_Messages[90]= new validateMessage('610',"Please enter a valid number for Markup.");
REGISTRATION_Messages[91]= new validateMessage('611',"The Staffing Commission Rate can only assume a value between 0 and 100. Please re-enter");
REGISTRATION_Messages[92]= new validateMessage('612',"Please create at least one Administrator.");

REGISTRATION_Messages[93]= new validateMessage('613',"Please enter the Group Name.");
REGISTRATION_Messages[94]= new validateMessage('614',"Please enter valid characters: <(a-z) (A-Z) (0-9) (_) (-)> for the Group.");

REGISTRATION_Messages[95]= new validateMessage('615',"Please enter User Name.");
REGISTRATION_Messages[96]= new validateMessage('616',"Invalid Character found in User Name. Please re-enter.");
REGISTRATION_Messages[97]= new validateMessage('617',"Length of the User Name should be lesser than or equal to 10.");

REGISTRATION_Messages[98]= new validateMessage('618',"Please enter the Password.");
REGISTRATION_Messages[99]= new validateMessage('619',"Please enter valid characters: <(a-z) (A-Z) (0-9) (_) (-)> for the Password.");
REGISTRATION_Messages[100]= new validateMessage('620',"Password length should not be lesser than 5 and greater than 10.");

REGISTRATION_Messages[101]= new validateMessage('621',"Please confirm the Password.");
REGISTRATION_Messages[102]= new validateMessage('622',"Please enter valid characters: <(a-z) (A-Z) (0-9) (_) (-)> while Confirming the Password.");
REGISTRATION_Messages[103]= new validateMessage('623',"Length of the Confirm Password should not be lesser than 5 and greater than 10.");

REGISTRATION_Messages[104]= new validateMessage('624',"Confirm Password does not match the Password you Created.");
REGISTRATION_Messages[105]= new validateMessage('625',"Password cannot be the same your User Name. Please re-enter.");

REGISTRATION_Messages[106]= new validateMessage('626',"Please create at least one Group");
REGISTRATION_Messages[107]= new validateMessage('627',"Please select a Group");

REGISTRATION_Messages[108]= new validateMessage('628',"Please select at least one Agency from the All Agencies list");
REGISTRATION_Messages[109]= new validateMessage('629',"Please select at least one Agency from the Preferred Agencies list.");
REGISTRATION_Messages[110]= new validateMessage('630',"Please check the row you want to delete.");
REGISTRATION_Messages[111]= new validateMessage('631',"Please select a Group Administrator.");
REGISTRATION_Messages[112]= new validateMessage('632',"Please select a Group Administrator since the Group already has users under it.");
REGISTRATION_Messages[113]= new validateMessage('633',"The Group Name already exists.");
REGISTRATION_Messages[114]= new validateMessage('634',"There is no Project to Delete.");
REGISTRATION_Messages[115]= new validateMessage('635',"Please add at least one user before you can proceed.");

REGISTRATION_Messages[116]= new validateMessage('636',"Please enter the Agency Name.");
REGISTRATION_Messages[117]= new validateMessage('637',"Please enter a valid Agency Name.");
REGISTRATION_Messages[118]= new validateMessage('638',"Please enter the Contact Name.");
REGISTRATION_Messages[119]= new validateMessage('639',"Please enter a valid Contact Name.");
REGISTRATION_Messages[120]= new validateMessage('640',"Please enter valid characters: <(0-9)( )(-)> for the Contact Phone number.");
REGISTRATION_Messages[121]= new validateMessage('641',"Contact Phone number should be between 10 and 20 characters long. Please re-enter");

REGISTRATION_Messages[122]= new validateMessage('642',"The MarkUp Rate can only assume a value between 0 and 100. Please re-enter.");
REGISTRATION_Messages[123]= new validateMessage('643',"Please enter the Old Password");
REGISTRATION_Messages[124]= new validateMessage('644',"Please enter valid characters: <(a-z) (A-Z) (0-9) (_) (-)> for the Old Password");
REGISTRATION_Messages[125]= new validateMessage('645',"Old Password should be between 5 and 10 characters long. Please re-enter.");
REGISTRATION_Messages[126]= new validateMessage('646',"Please enter the New Password");
REGISTRATION_Messages[127]= new validateMessage('647',"Please enter valid characters: <(a-z) (A-Z) (0-9) (_) (-)> for the New Password");
REGISTRATION_Messages[128]= new validateMessage('648',"New Password should be between 5 and 10 characters long. Please re-enter.");
REGISTRATION_Messages[129]= new validateMessage('649',"Please Confirm the New Password");
REGISTRATION_Messages[130]= new validateMessage('650',"Please enter valid characters: <(a-z) (A-Z) (0-9) (_) (-)> for while Confirming the New Password");
REGISTRATION_Messages[130]= new validateMessage('651',"The Confirm New Password should be between 5 and 10 characters long. Please re-enter.");
REGISTRATION_Messages[131]= new validateMessage('652',"Old Password and New Password should not be the same.");
REGISTRATION_Messages[132]= new validateMessage('653',"The New Password and the Confirm Password should be the same.");

REGISTRATION_Messages[133]= new validateMessage('654',"Length of the Company Name should be lesser than or equal to 50.");

MARKETING_Messages[0]= new validateMessage('655',"Please enter your Name.");
MARKETING_Messages[1]= new validateMessage('656',"Please re-enter your Email Address for validation.");
MARKETING_Messages[2]= new validateMessage('657',"The Confirm Email Address does not match the Email Address you first entered. Please verify and re-enter.");
MARKETING_Messages[3]= new validateMessage('658',"Please select Your Role.");
MARKETING_Messages[4]= new validateMessage('659',"Please select the area of the Application to which your feedback applies.");
MARKETING_Messages[5]= new validateMessage('660',"Please enter valid characters for Subject");
MARKETING_Messages[6]= new validateMessage('661',"Please enter valid characters for Company Name");
MARKETING_Messages[7]= new validateMessage('662',"Please enter valid characters for Comments");

REGISTRATION_Messages[134]= new validateMessage('663',"Please enter the Agency Name.");
REGISTRATION_Messages[135]= new validateMessage('664',"Please enter a valid Agency Name.");
REGISTRATION_Messages[136]= new validateMessage('665',"Length of the Agency Name should be lesser than or equal to 50.");
REGISTRATION_Messages[137]= new validateMessage('666',"Please select the Agency Size.");
REGISTRATION_Messages[138]= new validateMessage('667',"Please select the Agency Type.");

MARKETING_Messages[8]= new validateMessage('668',"Length of the User Name should be lesser than or equal to 50.");

REGISTRATION_Messages[139]= new validateMessage('669',"Length of the Group Name should be lesser than or equal to 50.");
REGISTRATION_Messages[140]= new validateMessage('670',"MarkUp can assume a value only between 0 and 100. Please re-enter.");
REGISTRATION_Messages[141]= new validateMessage('671',"Please enter an Answer for the Password Reminder.");
REGISTRATION_Messages[142]= new validateMessage('672',"The Password Reminder Answer should at least be 50 characters long.");
REGISTRATION_Messages[143]= new validateMessage('673',"Enter a valid Answer for the Password Reminder.");
REGISTRATION_Messages[144]= new validateMessage('674',"Please enter your Preferred Contact Mode.");
REGISTRATION_Messages[145]= new validateMessage('675',"Please enter valid characters: <(0-9)( )(-)> for the Mobile  number.");
REGISTRATION_Messages[146]= new validateMessage('676',"Mobile  number should be between 10 and 20 characters long. Please re-enter.");
REGISTRATION_Messages[147]= new validateMessage('677',"Please enter the Mailing Address 1");
REGISTRATION_Messages[148]= new validateMessage('678',"Invalid data for Mailing Address 1");
REGISTRATION_Messages[149]= new validateMessage('679',"Mailing Address 1 should not be more than 50 characters long. Please re-enter.");
REGISTRATION_Messages[150]= new validateMessage('680',"Please enter the Mailing Address 2");
REGISTRATION_Messages[151]= new validateMessage('699',"");
REGISTRATION_Messages[152]= new validateMessage('681',"Invalid data for Mailing Address 2");
REGISTRATION_Messages[153]= new validateMessage('682',"Mailing Address 2 should not be more than 50 characters long. Please re-enter.");
REGISTRATION_Messages[154]= new validateMessage('683',"Please enter the Country");
REGISTRATION_Messages[155]= new validateMessage('684',"Please enter the County");
REGISTRATION_Messages[156]= new validateMessage('685',"Please enter the City");
REGISTRATION_Messages[157]= new validateMessage('686',"City Name should not be more than 50 characters long. Please re-enter.");
REGISTRATION_Messages[158]= new validateMessage('687',"Invalid City Name.");
REGISTRATION_Messages[159]= new validateMessage('700',"Please enter the Country in the Permanent Address.");
REGISTRATION_Messages[160]= new validateMessage('701',"Please enter the County in the Permanent Address.");
REGISTRATION_Messages[161]= new validateMessage('702',"Please enter the City in the Permanent Address.");
REGISTRATION_Messages[162]= new validateMessage('703',"City Name should not be more than 50 characters long. Please re-enter.");
REGISTRATION_Messages[163]= new validateMessage('704',"Invalid data for the City name entered in the Permanent Address.");
REGISTRATION_Messages[164]= new validateMessage('688',"Postcode entered under Mailing Address should not be more than 10 characters long. Please re-enter.");
REGISTRATION_Messages[165]= new validateMessage('689',"Please enter the Postcode");
REGISTRATION_Messages[166]= new validateMessage('690',"Invalid PostCode entered under Mailing Address.");
REGISTRATION_Messages[167]= new validateMessage('691',"Please enter Address 1 under Permament Address.");
REGISTRATION_Messages[168]= new validateMessage('692',"Invalid data entered for Address 1 under Permanent Address.");
REGISTRATION_Messages[169]= new validateMessage('693',"Permanent Address 1 should not be more than 50 characters long. Please re-enter.");
REGISTRATION_Messages[170]= new validateMessage('694',"Please enter Address 2 under Permanent Address.");
REGISTRATION_Messages[171]= new validateMessage('695',"Invalid data entered for Address 2 under Permanent Address.");
REGISTRATION_Messages[172]= new validateMessage('696',"Permanent Address 2 should not be more than 50 characters long. Please re-enter.");
REGISTRATION_Messages[173]= new validateMessage('697',"Please enter the Postcode");
REGISTRATION_Messages[174]= new validateMessage('698',"Invalid PostCode entered under Permanent Address.");


REGISTRATION_Messages[175]= new validateMessage('699',"Please select the row you want to deactivate.");


REGISTRATION_Messages[176]= new validateMessage('705',"You cannot choose a specific Country now. You have already selected the All Countries option.");
REGISTRATION_Messages[177]= new validateMessage('706',"You cannot select a specific County now. You have already selected the All Counties option.");
REGISTRATION_Messages[178]= new validateMessage('707',"You cannot select a specific Area Code now. You have already selected the All Metros option for the Selected Country and the Selected County.");
REGISTRATION_Messages[179]= new validateMessage('708',"You cannot select All Countries now. You have already selected specific Countries.");
REGISTRATION_Messages[180]= new validateMessage('709',"You cannot select All Counties now. You have already selected specific Counties from the chosen Country.");
REGISTRATION_Messages[181]= new validateMessage('710',"You cannot select All Metros option now. You have already selected specific Metros from the the chosen County.");
REGISTRATION_Messages[182]= new validateMessage('711',"You cannot enter a specific City now. You have already selected All Cities for the selected Metro.");
REGISTRATION_Messages[183]= new validateMessage('712',"Please enter Other Region.");
REGISTRATION_Messages[184]= new validateMessage('713',"Please enter your CV.");
REGISTRATION_Messages[185]= new validateMessage('714'," Your CV should be less than 20,000 characters.");
REGISTRATION_Messages[186]= new validateMessage('715',"Please Enter Valid Date .");
REGISTRATION_Messages[187]= new validateMessage('716',"Please Select A Location.");
REGISTRATION_Messages[188]= new validateMessage('717',"Enter the file to be uploaded.");
REGISTRATION_Messages[189]= new validateMessage('718',"You can not select more than seven locations from the given countries.");
REGISTRATION_Messages[190]= new validateMessage('719',"Please fill in the Notice Type.");
REGISTRATION_Messages[191]= new validateMessage('720',"Please explain why you are no longer available.");
REGISTRATION_Messages[192]= new validateMessage('721',"You have indicated that you are registered as a Limited Company.  Please click NEXT to provide your Limited Company details before you exit, or uncheck the Limited Company box to continue.");
REGISTRATION_Messages[193]= new validateMessage('722',"Please Select Sub Industry.");
REGISTRATION_Messages[194]= new validateMessage('723',"Please Select Job Role.");
REGISTRATION_Messages[195]= new validateMessage('724',"Please enter the  County/Region.");
REGISTRATION_Messages[196]= new validateMessage('725',"Postcode entered under Permanent Address should not be more than 10 characters long. Please re-enter.");
REGISTRATION_Messages[197]= new validateMessage('726',"Please Select Country in the Permanent Address.");
REGISTRATION_Messages[198]= new validateMessage('727',"Please enter the County/State.");
REGISTRATION_Messages[199]= new validateMessage('728',"Please enter the County/State in the Permanent Address.");
REGISTRATION_Messages[200]= new validateMessage('729',"County/State length should be lesser than or equal to 50.");
REGISTRATION_Messages[201]= new validateMessage('730',"Other Region length should be lesser than or equal to 50.");
REGISTRATION_Messages[202]= new validateMessage('731',"Confirm Email does not match the Email Address.");
REGISTRATION_Messages[203]= new validateMessage('732',"Please select a Region.");
REGISTRATION_Messages[204]= new validateMessage('733',"Please select Preferred Location.");
REGISTRATION_Messages[205]= new validateMessage('734',"Please select Preferred Location or select No Preferences");
REGISTRATION_Messages[206]= new validateMessage('735',"Please add an industry to the experience field");
REGISTRATION_Messages[207]= new validateMessage('736',"Please select a specific industry, not an industry category");
REGISTRATION_Messages[208]= new validateMessage('737',"Please select industry.");
REGISTRATION_Messages[209]= new validateMessage('738',"Industry already has been added.");
REGISTRATION_Messages[210]= new validateMessage('739',"You cannot add more than five items from the given industries.");
REGISTRATION_Messages[211]= new validateMessage('740',"Please provide your availability information.");
REGISTRATION_Messages[212]= new validateMessage('741',"You should not select parent discipline.");
REGISTRATION_Messages[213]= new validateMessage('742',"Please select some specific discipline.");
REGISTRATION_Messages[214]= new validateMessage('743',"Please select an industry.");
REGISTRATION_Messages[215]= new validateMessage('744',"Please indicate your choice of Introductory email");

