// Random Image Display by Ken Lawton (durbnpoisn@gmail.com)
// Site:  http://www.durbnpoisn.com/

// In good faith I left the credit for these functions here as well.
// The Central Randomizer 1.3 (C) 1997 by Paul Houle (houle@msc.cornell.edu)
// See:  http://www.msc.cornell.edu/~houle/javascript/randomizer.html
function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};
function rand(number) {
        return Math.ceil(rnd()*number) + 1;
};
rnd.today=new Date();
rnd.seed=rnd.today.getTime();
// end central randomizer. -->

document.write('<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="1" BGCOLOR="#005677"><TR><TD align=center valign=top>');
document.write('<P ALIGN="CENTER"><B><FONT COLOR="White" FACE="Arial" SIZE="2">Picture of the day</FONT></B></P></TD></TR><TR><TD>');
document.write('<img src="http://www.durbnpoisn.com/image' + rand(39) + '.jpg" width="271" height="203">');
document.write('</TD></TR><TR><TD align=center valign=top>');
document.write("<a href='http://www.durbnpoisn.com/potd' target='_blank' style='height: 50%; font: 600; font-family: arial,helvetica; font-size: 10px; text-decoration : none'><font color=ffff00>Use This on Your Site - FREE!<br><font color=00ffff>www.DurbnPoisn.com</a></font color></td></tr></table>");

