// ofa.js

function showpic(evt) {
	// event handler to display a full sized picture.
	evt = (evt) ? evt : ((window.event) ? event : null);
	
	var picpath = evt.srcElement.src;
	document.location.href = picpath;
}