var pearls = new Array("White-Pearl.jpg",
"Cream-Pearl.jpg",
"Ivory-Pearl.jpg",
"Creamrose-Pearl.jpg",
"Gold-Pearl.jpg",
"Bright-Gold-Pearl.jpg",
"Copper-Pearl.jpg",
"Coral-Pearl.jpg",
"Brown-Pearl.jpg",
"Deep-Brown-Pearl.jpg",
"Bronze-Pearl.jpg",
"Peach-Pearl.jpg",
"Powder-Almond-Pearl.jpg",
"Rosaline-Pearl.jpg",
"Powder-Rose-Pearl.jpg",
"Lavender-Pearl.jpg",
"Mauve-Pearl.jpg",
"Burgundy-Pearl.jpg",
"Bordeaux-Pearl.jpg",
"Maroon-Pearl.jpg",
"Dark-Purple-Pearl.jpg",
"Night-Blue-Pearl.jpg",
"Light-Blue-Pearl.jpg",
"Tahitian-Look-Pearl.jpg",
"Powder-Green-Pearl.jpg",
"Light-Green-Pearl.jpg",
"Antique-Brass-Pearl.jpg",
"Dark-Green-Pearl.jpg",
"Platinum-Pearl.jpg",
"Light-Silver-Grey-Pearl.jpg",
"Dark-Grey-Pearl.jpg",
"Black-Pearl.jpg",
"Mystic-Black-Pearl.jpg");


var pearl_name = new Array("White Pearl",
"Cream Pearl",
"Ivory Pearl",
"Creamrose Pearl",
"Gold Pearl",
"Bright Gold Pearl",
"Copper Pearl",
"Coral Pearl",
"Brown Pearl",
"Deep Brown Pearl",
"Bronze Pearl",
"Peach Pearl",
"Powder Almond Pearl",
"Rosaline Pearl",
"Powder Rose Pearl",
"Lavender Pearl",
"Mauve Pearl",
"Burgundy Pearl",
"Bordeaux Pearl",
"Maroon Pearl",
"Dark Purple Pearl",
"Night Blue Pearl",
"Light Blue Pearl",
"Tahitian Look Pearl",
"Powder Green Pearl",
"Light Green Pearl",
"Antique Brass Pearl",
"Dark Green Pearl",
"Platinum Pearl",
"Light Silver Grey Pearl",
"Dark Grey Pearl",
"Black Pearl",
"Mystic Black Pearl");


function DisplayPearls(columns) 
{
  //columns = 6;
  var count = 0;
  var l_c;
  //var strOutput = "<table border=0>";
  var strOutput = '<tr align=center valign=top>';
  
  for (l_c = 0; l_c < pearls.length; l_c++) {
    strOutput += '<td class="main" width="101"><br/><img src="./images/Pearls/'  + pearls[l_c] + '" height="30" width="30"><br /> ' + 
      pearl_name[l_c] + '</td>';
    count++;
    if (count > columns) {
       strOutput += '</tr> <tr align="center" valign="top">';
       count = 0;
    }
  }
  strOutput += '</tr>';
  // strOutput += "</table>";
  document.write(strOutput);
  document.close();

}

function Selectpearls ( )
{

  var l_c;
  var strOutput = "";
  
  for (l_c = 0; l_c < pearls.length; l_c++) {
    strOutput += "  <option value="  + pearls[l_c] + ">" + pearl_name[l_c] + "</option>";
  }
  document.write(strOutput);
  document.close();
}

