<!--
function showPicture(strTitle, strURL, w, h){
	// actual window with picture size
	var myLink = "../../../pict.asp?img=" + strURL + "&title=" + strTitle + "&w=" + w + "&h=" + h;
	// adjust window size to accommodate additional space
	// to display other data.
	var h = h + 85;
	var w = w + 30;
	var win2 = window.open(myLink, 'myWindow','toolbar=no,width=' + w + ',height=' + h + ',directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no');
}
-->

