fabrics = new Array(
                                 "Blue Tropical Party", "blueParty",
                                 "Bubble Gum Pink", "bubbleGumPink",
                                 "Daisy Red", "daisyRed",
                                 "Kiwi Green", "kiwigrn",
                                 "Hawaiian Camouflage", "hawcamo",
                                 "Hurricane", "hurricane",
                                 "Lava Red", "red",
                                 "Ocean Blue", "oceanbl",
                                 "Rhythm of the Islands", "rhythmIslands",
                                 "Whale Song", "whaleSong",
                                 "Wild Wahine", "wildWahine"
                               );

function MakeOptions()
{
	document.write ( "<OPTION value='0'>Select a fabric" );
	for( i=0; i<fabrics.length; i += 2 )
	{
		document.write ( "<option value='" + fabrics[ i ] + "'>" + fabrics[ i ] );
	}
}
   
                         
                          
                         
                          
                          
                          
                         
