function aktiv(i) {
	if (document.images) {
		var zdroj = document.images[i].src;
		var aktiv = zdroj.lastIndexOf("_n");
		if (aktiv==-1){
			var off = zdroj.lastIndexOf("_d");
			if (off != -1) {
				document.images[i].src = zdroj.substring(0,off) + "_a.gif";
			}
		}
	}
}

function neaktiv(i) {
	if (document.images) {
		var zdroj = document.images[i].src;
		var on = zdroj.lastIndexOf("_a");
		if (on != -1) {
			document.images[i].src = zdroj.substring(0,on) + "_d.gif";
		}
	}
}
function zoom(i){
	document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">')
	document.writeln('<HTML><HEAD>')
	document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">')
	document.writeln('<TITLE>Zoom</TITLE>')
	document.writeln('</HEAD>')
	document.writeln('<body TEXT="#FFFFFF" bgcolor="#000066" link="#FFFF00" vlink="#FFFF00" alink="#FFFF00" background="../../OBR/back.gif">')
	document.writeln('<center>')
	document.writeln('<a href="javascript:history.back();">')
	document.writeln('<img border="0" alt="" align="center" src="BIG/'+i+'.jpg"></a>')
	document.writeln('</center>')
	document.writeln('</BODY></HTML>')
}
