function openwin(descript) {
  fotowin=window.open(descript, 'hint', "width=800,height=700,dependent,scrollbars,resizable,menubar,top=20,left=20");
  fotowin.focus();
}
function showpicture(descript) {
  fotowin=window.open(descript, 'hint', 'width=800,height=700,dependent,scrollbars,resizable,menubar,top=20,left=20');
  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;
}
