rnd.today=new Date();
rnd.seed=rnd.today.getTime();
document.writeln ('<img src="intropic' + rand(5) + '.jpg" width=150 height=140 alt="m i c h a e l"><br>');

function rnd()
{
	rnd.seed = (rnd.seed*9301+49297) % 233280;
	return rnd.seed/(233280.0);
};

function rand(number)
{
	return Math.ceil(rnd()*number);
};