function menu (what,show) {
	if(show=='on') {what.children[1].style.display='block'}
		else {what.children[1].style.display='none'}
}

function wopen(url,width,height,name) {
	widthw=width;
	heightw=height;
	if(navigator.userAgent.indexOf("MSIE")>=0) {
		widthw=width-6;
		heightw=height-6;
	}
	foto=window.open ("","foto","top=100,left=100,width="+widthw+",height="+heightw,"location=no,menubar=no,status=no,toolbar=no,scrollbars=no");
	foto.document.write('<?xml version="1.0" encoding="iso-8859-2"?>'+"\n"+
		'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'+"\n"+
		'<html xmlns="http://www.w3.org/1999/xhtml">'+"\n<head>\n<title>"+name+"</title>"+
		'<link rel="stylesheet" href="/styles/foto.css" type="text/css"  media="screen, projection" />'+
		"\n</head>\n" +
		"<body>\n<div>\n"+
		"<a href='#' onclick=\"window.close()\">\n"+
		"<img src='"+url+"' alt='"+name+"' width='"+width+"' height='"+height+"' title='Pro zavření okna klikněte na obrázek' />\n"+
		"</a>"+
		"\n</div>\n</body>\n</html>");
	return false;
}

