/*Header Begin

$Author: Mohamed.kassim $

$Workfile: domain_nameslist.js $

$Modtime: 6/18/09 5:16p $

$Revision: 3 $

$NoKeywords: $

Change History: Put the issue ID and your description of the changes here

1)This file contains an array of all  GTLD (Generic Top Level Domains) and STLD (Sponsored Top Level Domain).
  These will be used to validate the domain names in the email address entered by a person.
2)In future any new GTLD and STLD should be added in the array.

3) Any 2 digit extensions are allowed and script validation runs long time if we put the valid 2 digit ext

Header Ends*/

var tld_names= new Array();
tld_names[3]  = "aero";
tld_names[13] = "arpa";
tld_names[15] = "asia";
tld_names[29] = "biz";
tld_names[42] = "cat";
tld_names[54] = "com";
tld_names[55] = "coop";
tld_names[69] = "edu";
tld_names[93] = "gov";
tld_names[113] = "info";
tld_names[114] = "int";
tld_names[123] = "jobs";
tld_names[153] = "mil";
tld_names[159] = "mobi";
tld_names[166] = "museum";
tld_names[173] = "name";
tld_names[176] = "net";
tld_names[187] = "org";
tld_names[198] = "pro";
tld_names[231] = "tel";
tld_names[243] = "travel";