if(items.length ==0){document.writeln("Channel not published");}else{
if( itemcount > items.length-1){itemcount=items.length-1;}
document.writeln("  <div align=\"center\">");
document.writeln("  <table border=\"0\" cellpadding=\"5\" cellspacing=\"5\" width=\"600\">");
document.writeln("  <tr>");
document.writeln("  <td valign=\"top\">");
for (var i=0; i < itemcount; i++){
item=fetch_item(i);
document.writeln("<a href=\""+item.link+"\">");
document.writeln("<img src=\""+item.image+"\" alt=\"click for full view\" width=\"150\" align=\"top\" vspace=\"5\">");
document.writeln("</a>");
}
document.writeln("  </td>");
document.writeln("  </tr>");
document.writeln("  </table>");
document.writeln("  </div>");
}