


document.write(" <TABLE   bgcolor=white border=1 BORDERCOLOR=black cellpadding=15 cellspacing=0 > ");
document.write(" <TR><TD WIDTH=100% VALIGN=top> ");

document.write(" <H1> News feed      widget  </H1> ");
document.write(" From <A target=_blank HREF=http://computing.dcu.ie/~humphrys/>Mark Humphrys</A>.<BR> ");
document.write(" See <A target=_blank HREF=http://computing.dcu.ie/~humphrys/feeds.all.html>All feeds</A>.<br> ");
document.write(" <form> Embed code: <BR>");
document.write(" <input size=20  value='&lt;script src=http://computing.dcu.ie/~humphrys/feed.random.js&gt;&lt;/script&gt;'> </form><P><BR> ");
 



// script rotates randomly among feeds pages 0 to MAXFEED

	var MAXFEED = 18;

var f = Math.floor ( Math.random() * (MAXFEED+1) );

//	f = 10;

var feedfile = "http://computing.dcu.ie/~humphrys/feed."+f+".html";

document.write("<iframe frameborder=0 src="+feedfile+" width=100% height=2500 ></iframe>");


 
document.write(" </td></TR></TABLE> ");


 

