// JavaScript Document
//list merchants here...
var items_array=new Array(
'<a href="http://www.meancoupons.com/cardscan/">CardScan</a>',
'<a href="http://www.meancoupons.com/franklin_covey/">Franklin Covey</a>',
'<a href="http://www.meancoupons.com/vistaprint/">VistaPrint</a>',
'<a href="http://www.meancoupons.com/stamps/">Stamps</a>',
'<a href="http://www.meancoupons.com/quickbooks/">QuickBooks</a>',
'<a href="http://www.meancoupons.com/create_for_less/">CreateForLess</a>',
'<a href="http://www.meancoupons.com/inkgrabber/">Inkgrabber</a>',
'<a href="http://www.meancoupons.com/quill/">Quill</a>',
'<a href="http://www.meancoupons.com/cymax_stores/">Cymax Stores</a>',
'<a href="http://www.meancoupons.com/shoplet/">Shoplet.com</a>',
'<a href="http://www.meancoupons.com/discount_office_items/">Discount Office Items</a>',
'<a href="http://www.meancoupons.com/staples/">Staples</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>');
