// Random Image Display by Ken Lawton (durbnpoisn@yahoo.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('<div align="center">');
document.write('<img class="brd" src="Potd/image' + rand(387) + '.jpg" width="225" height="168" alt="Momentka">');
document.write('</div>');

