home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / soundCD_1.03.iso / players / RealPlayerOne / RealOnePlayerV2GOLD.exe / login.dcp / data / countries.js < prev    next >
Text File  |  2002-06-25  |  534b  |  26 lines

  1. /*
  2.  * Purpose:    Provide data for the countries form item
  3.  *
  4.  * CVS: $Id: countries.js,v 1.6.6.2 2002/06/25 20:27:14 kwolff Exp $
  5.  *
  6.  * This file is a part of the Real Networks software library.
  7.  * Copyright (C) 2001 Real Networks, Inc.
  8.  * All rights reserved.
  9.  *
  10.  */
  11.  
  12. var countryList = new Array();
  13.  
  14. function addCountry(code,name)
  15. {
  16.     countryList[countryList.length] = new FormDataItem(code,name);
  17. }
  18.  
  19. function countryDefaultText(text)
  20. {
  21.     countryList[countryList.length] = new FormDataItem("",text);
  22. }
  23.  
  24. var off_countries_loaded = true;
  25.  
  26.