function openimage(adress,titulek,sirka,vyska) {
  var generator=window.open('','name','toolbar=no,location=no,scrollbars=auto,resizable=yes,height='+vyska+',width='+sirka+'');
  generator.document.write('<html><head><title>'+titulek+'</title>');
  generator.document.write(' <meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />');
  generator.document.write('</head><body id="imageview" style="margin: 0; padding: 0;" onload="window.focus();" onblur="window.close()"">');
  generator.document.write('<img src="'+adress+'" alt="'+titulek+'" />');
  generator.document.write('</body></html>');
  generator.document.close();
}

function imgAct(imgName,hoverImage)
{
	document.getElementById(imgName).src=hoverImage;
}

function imgInact(imgName)
{
	document.getElementById(imgName).src=hoverImage;
}
