// Get the array containing our common domains
function getCommonDomains(){
    var commonDomains = new Array(
            "3mail",
            "aim",
            "aol",
            "bloomberg",
            "blueyonder",
            "btclick",
            "btconnect",
            "btinternet",
            "btopenworld",
            "clara",
            "dishmail",
            "earthlink",
            "easy",
            "email",
            "excite",
            "fastmail",
            "freenet",
            "freeserve",
            "fsmail",
            "gmail",
            "gmx",
            "googlemail",
            "gotadsl",
            "hotmail",
            "iafrica",
            "juno",
            "libero",
            "lineone",
            "lineone",
            "live",
            "lycos",
            "mac",
            "macunlimited",
            "madasafish",
            "mail",
            "mindspring",
            "msn",
            "nildram",
            "ntlworld",
            "o2",
            "onetel",
            "online",
            "orange",
            "rocketmail",
            "sky",
            "sprintpcs",
            "supanet",
            "talk21",
            "talktalk",
            "telefonica",
            "telia",
            "tesco",
            "tiscali",
            "ukonline",
            "verizon",
            "versatel",
            "virgin",
            "vodafone",
            "wanadoo",
            "windowslive",
            "yahoo",
            "yahoo-inc",
            "ymail",
            "zoom"
	);
	return commonDomains;
}

// Get the array containing our common domains
function getCommonSingleSuffix(){
    var singleSuffixes = new Array(
            "ae",
            "ag",
            "at",
            "be",
            "bg",
            "biz",
            "br",
            "ca",
            "cc",
            "ch",
            "cn",
            "com",
            "cz",
            "de",
            "dk",
            "dm",
            "edu",
            "es",
            "eu",
            "fm",
            "fr",
            "gov",
            "gr",
            "gr",
            "hr",
            "hu",
            "ie",
            "in",
            "in",
            "info",
            "int",
            "is",
            "is",
            "it",
            "lc",
            "lu",
            "me",
            "mil",
            "mobi",
            "mu",
            "name",
            "net",
            "nl",
            "no",
            "nu",
            "org",
            "pl",
            "pt",
            "pt",
            "ro",
            "ru",
            "se",
            "se",
            "us",
            "ws",
            "ws"
	);
	return singleSuffixes;
}

function getCommonDoubleSuffix(){
    var doubleSuffixes = new Array(
            "ac.uk",
            "cg.yu",
            "co.il",
            "co.id",
            "co.in",
            "co.jp",
            "co.nz",
            "co.uk",
            "co.za",
            "com.ar",
            "com.au",
            "com.br",
            "com.cn",
            "com.cy",
            "com.gr",
            "com.hk",
            "com.mt",
            "com.mx",
            "com.pa",
            "com.ph",
            "com.pt",
            "com.sg",
            "com.tr",
            "gov.uk",
            "me.uk",
            "net.ae",
            "net.au",
            "net.il",
            "net.in",
            "org.uk",
            "sch.uk",
            "uk.com"
	);
	return doubleSuffixes;
}
