function openwin(descript) {
  fotowin=window.open(descript, 'hint', "width=700,height=600,dependent,scrollbars,resizable,menubar,top=60,left=320");
  fotowin.focus();
}
function showpicture(descript) {
  fotowin=window.open(descript, 'hint', 'width=700,height=500,dependent,scrollbars,resizable,menubar,top=60,left=320');
  fotowin.focus();
}
function run() {}

function show(name)
{
	if (document.all) {
		if (document.all[name].style.display!='block') {
			document.all[name].style.display='block';
		}
		else {
			document.all[name].style.display='none';
		}
	}
	return;
}



<!-- // Netscape 3.0 compatibility test (for javascript image swapping)
compat = false;
if( parseInt( navigator.appVersion ) >= 3 ) { compat = true; }

// cache images for quick swapping
if( compat )

{
arrow1_on = new Image;
arrow1_on.src = "arrow1.gif";
arrow1_off = new Image;
arrow1_off.src = "arrow.gif";

arrow3_on = new Image;
arrow3_on.src = "arrow3.gif";
arrow3_off = new Image;
arrow3_off.src = "arrow.gif";

arrow4_on = new Image;
arrow4_on.src = "arrow4.gif";
arrow4_off = new Image;
arrow4_off.src = "arrow.gif";

arrow5_on = new Image;
arrow5_on.src = "arrow5.gif";
arrow5_off = new Image;
arrow5_off.src = "arrow.gif";
}

// swap images using the cached images
function go(x, y)
{
   if( compat ) { document.images[x].src=eval(y+'.src'); }
}
// -->