﻿function globalSiteList()
{
  sites = new Array();

  sites['Argentina'] = 'http://www.experian.com.ar/';
  sites['Australia'] = 'http://www.experian.com.au/';
  sites['Austria'] = 'http://www.experian.at/';
  sites['Belgium'] = 'http://www.experian.be/';
  sites['Brazil'] = 'http://www.serasaexperian.com.br/';
  sites['Bulgaria'] = 'http://www.experian.bg/';
  sites['Canada'] = 'http://www.experian.ca/';
  sites['Chile'] = 'http://www.experian.cl/';
  sites['China'] = 'http://www.experian.com.cn/';
  sites['Czech Republic'] = 'http://www.experian.cz/';
  sites['Denmark'] = 'http://www.experian.dk/';
  sites['Finland'] = 'http://www.experian.fi/';
  sites['France'] = 'http://www.experian.fr/';
  sites['Germany'] = 'http://www.experian.de/';
  sites['Greece'] = 'http://www.experian.gr/';
  sites['Hong Kong'] = 'http://www.experian.com.hk/';
  sites['India'] = 'http://www.experian.in/';
  sites['Ireland'] = 'http://www.experian.ie/';
  sites['Italy'] = 'http://www.experian.it/';
  sites['Japan'] = 'http://www.experian.co.jp/';
  sites['Malaysia'] = 'http://www.experian.com.my/';
  sites['Mexico'] = 'http://www.experian.com.mx/';
  sites['Monaco'] = 'http://monaco.experian.com/index.html';
  sites['Morocco'] = 'http://www.experian.co.ma/';
  sites['Netherlands'] = 'http://www.experian.nl/';
  sites['New Zealand'] = 'http://www.experian.co.nz/';
  sites['Norway'] = 'http://www.experian.no/';
  sites['Poland'] = 'http://poland.experian.com/index.html';
  sites['Romania'] = 'http://romania.experian.com/index.html';
  sites['Russia'] = 'http://russia.experian.com/index.html';
  sites['Singapore'] = 'http://www.experian.com.sg/';
  sites['South Africa'] = 'http://www.experian.co.za/';
  sites['South Korea'] = 'http://www.experian.co.kr/';
  sites['Spain'] = 'http://www.experian.es/';
  sites['Sweden'] = 'http://www.experian.se/';
  sites['Taiwan'] = 'http://www.experian.com.tw/';
  sites['Thailand'] = 'http://www.experian.co.th/';
  sites['Turkey'] = 'http://www.experian.com.tr/';
  sites['United Kingdom'] = 'http://www.experian.co.uk/';
  sites['United States'] = 'http://www.experian.com/experian_us.html';
  sites['Vietnam'] = 'http://www.experian.com.vn/';

  var result = '<table>';

  var rowsStarted = 0;
  var rowsCompleted = 0;

  var columns = 0;

  for (country in sites)
  {
    if (country != 'indexOf') // IE
    {
      if (columns == 0)
      {
        result += '<tr>';
        
        rowsStarted++;
      }
      
      result += '<td class="noBorder"><a href="' + sites[country] + '" title="' + country + ' - ' + sites[country] + '" target="_blank">' + country + '</a></td>';
      
      columns++;
      
      if (columns == 4)
      {
        result += '</tr>';
        
        rowsCompleted++;
        
        columns = 0;
      }
    }
  }

  if (rowsCompleted < rowsStarted)
  {
    while (columns < 4)
    {
      result += '<td class="noBorder">&nbsp;</td>';

      columns++;
    }
  }

  result += '</table>';

  return result;
}

