<!-- Hide from oldies
function resizeImages()
{
  var maxh = 300;
  var maxw = 300;
  for (i=0; i < document.images.length; i++)
  {
	if (document.images[i].id == "resize")
	{
	  if ((document.images[i].width > maxw) || (document.images[i].height > maxh))
	  {
		var ratioh = maxh / document.images[i].height;
		var ratiow = maxw / document.images[i].width;
		var ratiosmall = (ratioh < ratiow) ? ratioh : ratiow;
		document.images[i].width *= ratiosmall;  // the other dimension seems automatically resized
	  }
  	}
  }
}
// End Hiding -->

