if(items.length ==0){document.writeln("Channel not published");}else{
if( itemcount > items.length-1){itemcount=items.length-1;}
document.writeln("<script language=\"Javascript\">");
document.writeln("function sendit(object){");
document.writeln("   if(object){");
document.writeln("      location.href=object;");
document.writeln("   }");
document.writeln("   return false;");
document.writeln("}");
document.writeln("</script>");
document.writeln("<FONT color=#333333>");
document.writeln("<FORM>");
document.writeln("<SELECT onchange=sendit(this.options[selectedIndex].value)>");
document.writeln("              <OPTION>Select Item</OPTION>");
for (var i=0; i < itemcount; i++){
item=fetch_item(i);
document.writeln("              <OPTION value="+item.link+">"+item.title+"</OPTION>");
}
document.writeln("</SELECT>");
document.writeln("</FORM>");
document.writeln("</FONT>");
}