
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Modified by A.Burr -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
var imgBegin = '<img src="/technology-transfer/images/img-banner';
var imgEnd = '.jpg" alt="Technology Transfer: The Bridge fromm Science to Success" width="900" height="287" />';

// To add more image files, continue with the pattern below, adding to the array.
	theImages[0] = imgBegin + "1" + imgEnd;
	theImages[1] = imgBegin + "2" + imgEnd;
	theImages[2] = imgBegin + "3" + imgEnd;
	theImages[3] = imgBegin + "4" + imgEnd;
	theImages[4] = imgBegin + "5" + imgEnd;
	theImages[5] = imgBegin + "6" + imgEnd;
	theImages[6] = imgBegin + "7" + imgEnd;

// do not edit anything below this line
var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){ document.write( theImages[whichImage] ); }

//  End -->
