<!-- 
//Copyright 2005 David Bostock
//This source code is registered with the United States Copyright Office and is protected by United States Copyright Law.
//Unauthorized use of of this authorship may violate copyright and other applicable laws and could result in criminal or civil penalties.

	//create array list of pictures to ramdomly display...image name, caption, width, length.
	var pic = [
		["01.jpg",420,280],
		["02.jpg",420,306],
		["03.jpg",420,279],
		["04.jpg",420,280],
		["05.jpg",420,292],
		["06.jpg",420,280],
		["07.jpg",420,264],
		["08.jpg",420,272],
		["09.jpg",420,276],
		["10.jpg",420,256],
		["11.jpg",420,287],
		["12.jpg",420,269],
		["13.jpg",420,280],
		["14.jpg",420,280],
		["15.jpg",420,257],
		["16.jpg",420,267],
		["17.jpg",420,280],
		["18.jpg",420,280],
		["19.jpg",420,270],
		["20.jpg",420,244]
	];

	function randompic() {
		no=Math.floor(pic.length * Math.random());
		//var mStr = '<SPAN><TABLE align="right" cellpadding="0" cellspacing="10"><caption align="bottom">'+pic[no][1]+'</caption><TBODY><TR><TD><img class="display" src="/images/random/'+pic[no][0]+'"width="'+pic[no][2]+'" height="'+pic[no][3]+'" hspace="1" vspace="1" border="0" alt="" /></TD></TR></TBODY></TABLE></SPAN>';
		var mStr = '<p ><a href="/galleries/index.html"><img class="articleimg" src="/images/random/'+pic[no][0]+'" width="'+pic[no][1]+'" height="'+pic[no][2]+'" hspace="5" vspace="5" alt="Image Galleries" align="right" /></a></p>';
		document.write(mStr);
		return true;
	}
	
// -->
