var ad = new Array();
// tradepub
ad[0] = ['http://freewarehome.tradepub.com/', 
         '/img/tradepub120x90.gif',
         'FREE magazine subscriptions'
        ];
// screensavers.com
//ad[1] = ['http://www.tkqlhce.com/click-2283145-10423816',
//         'http://www.ftjcfx.com/image-2283145-10423816',
//		 'Free screensavers and wallpapers for any occasion'
//		];
// Vistaprint
//ad[2] = ['http://www.tkqlhce.com/click-2283145-10283016',
//         'http://www.ftjcfx.com/image-2283145-10283016',
//		 'Free business cards'
//		 ];
		
//var horiz = true;
var adnum = 1;
var item = uniqueArray(adnum, ad.length - 1);

document.write('<table border=0 width=100%>');
if (horiz)
{
  document.write('<tr>');
}
  
for (var i = 0; i < item.length; i++)
{
  var index = item[i];
  var x = ad[index];
  if (!horiz)
    document.write('<tr>');
  document.write("<th><a href='" + x[0] + "' target=_blank>" + 
                 "<img src='" + x[1] + "' border=0 title='" + x[2] + "'></a></th>")
  if (!horiz)
    document.write('</tr>');

}
if (horiz)
  document.write('</tr>');
document.write('</table>');

