<!--
var rootdir="/~divofres";
function showImage(){
	var theImages = new Array(); 
	
	theImages[0] = rootdir+'/images/homepics/homepic1.jpg';
	theImages[1] = rootdir+'/images/homepics/homepic2.jpg';
	theImages[2] = rootdir+'/images/homepics/homepic3.jpg';
	theImages[3] = rootdir+'/images/homepics/homepic4.jpg';
	theImages[4] = rootdir+'/images/homepics/homepic5.jpg';
	theImages[5] = rootdir+'/images/homepics/homepic6.jpg';
	theImages[6] = rootdir+'/images/homepics/homepic7.jpg';
	theImages[7] = rootdir+'/images/homepics/homepic8.jpg';
	theImages[8] = rootdir+'/images/homepics/homepic9.jpg';
	theImages[9] = rootdir+'/images/homepics/homepic10.jpg';
	
	var p = theImages.length;
	var whichImage = Math.round(Math.random()*(p-1));

	document.write('<img src="'+theImages[whichImage]+'" alt="Research">');
}
//-->
