// JavaScript Document
//list merchants here...
var items_array=new Array(
'<a href="http://www.meancoupons.com/collectibles_today/">Collectibles Today</a>',
'<a href="http://www.meancoupons.com/cooking/">Cooking.com</a>',
'<a href="http://www.meancoupons.com/gourmet_gift_baskets/">Gourmet  Gift Baskets</a>',
'<a href="http://www.meancoupons.com/ice/">Ice.com</a>',
'<a href="http://www.meancoupons.com/lillian_vernon/">Lillian Vernon</a>',
'<a href="http://www.meancoupons.com/personalcreations/">Personal Creations</a>',
'<a href="http://www.meancoupons.com/vistaprint/">VistaPrint</a>',
'<a href="http://www.meancoupons.com/teleflora/">Teleflora</a>',
'<a href="http://www.meancoupons.com/the_popcorn_factory/">The Popcorn Factory</a>',
'<a href="http://www.meancoupons.com/things_remembered/">Things Remembered</a>',
'<a href="http://www.meancoupons.com/dick_blick/">Dick Blick Art Materials</a>',
'<a href="http://www.meancoupons.com/just_flowers/">JustFlowers</a>',
'<a href="http://www.meancoupons.com/hollywood_mega_store/">Hollywood Mega Store</a>',
'<a href="http://www.meancoupons.com/bonsai_boy/">Bonsai Boy</a>',
'<a href="http://www.meancoupons.com/direct_gardening/">Direct Gardening</a>',
'<a href="http://www.meancoupons.com/flowers_across_america/">Flowers Across America</a>',
'<a href="http://www.meancoupons.com/blooming_bulb/">BloomingBulb.com</a>',
'<a href="http://www.meancoupons.com/i_see_me/">I See Me</a>',
'<a href="http://www.meancoupons.com/jostens/">Jostens</a>',
'<a href="http://www.meancoupons.com/just_because_baskets/">Just Because Baskets</a>',
'<a href="http://www.meancoupons.com/dans_chocolates/">Dans Chocolates</a>',
'<a href="http://www.meancoupons.com/swarovski/">Swarovski</a>',
'<a href="http://www.meancoupons.com/hanson_ellis/">HansonEllis</a>',
'<a href="http://www.meancoupons.com/flower_delivery/">FlowerDelivery</a>',
'<a href="http://www.meancoupons.com/marthastewart_for_1800flowers/">Martha Stewart for 1-800-Flowers</a>',
'<a href="http://www.meancoupons.com/zazzle/">Zazzle</a>',
'<a href="http://www.meancoupons.com/wine/">Wine.com</a>',
'<a href="http://www.meancoupons.com/flower/">Flower.com</a>',
'<a href="http://www.meancoupons.com/ftd_coupons/">FTD</a>',
'<a href="http://www.meancoupons.com/are_you_game/">AreYouGame</a>',
'<a href="http://www.meancoupons.com/brecks/">Breck\'s</a>',
'<a href="http://www.meancoupons.com/gurneys/">Gurney\'s</a>',
'<a href="http://www.meancoupons.com/charisma_brands/">Charisma Brands</a>',
'<a href="http://www.meancoupons.com/gourmet_month_club/">Gourmet Monthly Clubs</a>',
'<a href="http://www.meancoupons.com/hale_groves/">Hale Groves</a>',
'<a href="http://www.meancoupons.com/one_share/">OneShare</a>',
'<a href="http://www.meancoupons.com/smilemakers/">SmileMakers</a>',
'<a href="http://www.meancoupons.com/the_land_of_nod/">The Land of Nod</a>',
'<a href="http://www.meancoupons.com/wisconsin_cheeseman/">Wisconsin Cheeseman</a>',
'<a href="http://www.meancoupons.com/bachelorette/">Bachelorette</a>',
'<a href="http://www.meancoupons.com/personalizationmall/">Personalization Mall</a>',
'<a href="http://www.meancoupons.com/omaha_steaks_coupons/">Omaha Steaks</a>'
);

//sorting of merchants
var merchant_array=items_array.sort();

//count merchants
var item_count=merchant_array.length;

//display merchants
document.write('<table cellspacing="0" cellpadding="2" width="106%" border="0">');
for(i=0;i<item_count;i++)
{  
document.write('<tr>');
if(merchant_array[i]!=null)
{
document.write('<td width="237" align="left">'+merchant_array[i]+'</td>');
}
if(merchant_array[i+1]!=null)
{
document.write('<td width="237" align="left">'+merchant_array[i+1]+'</td>');  
}
if(merchant_array[i+2]!=null)
{
document.write('<td width="237" align="left">'+merchant_array[i+2]+'</td>'); 
}
document.write('</tr>');
document.write('<tr>');
document.write('<td height="5px" colspan="3"></td>');
document.write('</tr>');
i=i+2;
}
document.write('</table>');