/*******************************************
  randomize images on home page
  includes image path, alt text, and link path
  R. McGlauflin Jan-2009
/*******************************************/

function displayRandImg (img,alt,linkpath,w,h) {
	document.writeln('<a href="' + linkpath + '"><img src="' + img + '" alt="' + alt + '" width="' + w + '" height="' + h + '" /></a>');
}