// JavaScript Document
//list merchants here...
var items_array=new Array(
'<a href="http://www.meancoupons.com/kodak_store/">Kodak Store</a>',
'<a href="http://www.meancoupons.com/snapfish/">Snapfish</a>',
'<a href="http://www.meancoupons.com/vistaprint/">Vistaprint</a>',
'<a href="http://www.meancoupons.com/blue_mountain/">Blue Mountain</a>',
'<a href="http://www.meancoupons.com/fathead/">Fathead</a>',
'<a href="http://www.meancoupons.com/acdsee/">ACDSee</a>',
'<a href="http://www.meancoupons.com/overnight_prints/">Overnight Prints</a>',
'<a href="http://www.meancoupons.com/calumet_photographic/">Calumet Photographic</a>',
'<a href="http://www.meancoupons.com/checks_in_the_mail/">Checks In The Mail</a>',
'<a href="http://www.meancoupons.com/see_here/">SeeHere</a>',
'<a href="http://www.meancoupons.com/canvas_press/">Canvas Press</a>',
'<a href="http://www.meancoupons.com/print_place/">Print Place</a>',
'<a href="http://www.meancoupons.com/printing_for_less/">Printing For Less</a>',
'<a href="http://www.meancoupons.com/print_runner/">Print Runner</a>',
'<a href="http://www.meancoupons.com/scan_cafe/">ScanCafe</a>',
'<a href="http://www.meancoupons.com/iprint/">iPrint</a>',
'<a href="http://www.meancoupons.com/vio/">V.I.O.</a>',
'<a href="http://www.meancoupons.com/anns_bridal_bargains/">Ann\'s Bridal Bargains</a>',
'<a href="http://www.meancoupons.com/adobe/">Adobe</a>',
'<a href="http://www.meancoupons.com/colorful_images/">Colorful Images</a>',
'<a href="http://www.meancoupons.com/current_labels/">Current Labels</a>',
'<a href="http://www.meancoupons.com/exposures/">Exposures</a>',
'<a href="http://www.meancoupons.com/1800_postcards/">1-800 Postcards</a>',
'<a href="http://www.meancoupons.com/ps_print/">PsPrint</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>');


