function zoom(Src,Data) {
nwindow=window.open("","_top","");
var Img=Data.previousSibling;
var Title=Img.getAttribute("title");
var Alt=Img.getAttribute("alt");
with (nwindow) {
document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"\n'+
'	"http://www.w3.org/TR/html4/strict.dtd">\n'+
'<html lang="cs">\n'+
'<head>\n'+
'<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\n'+
'<meta http-equiv="Content-Language" content="cs">\n'+
'<meta name="author" content="Pavel Koudelka">\n'+
'<meta name="description" lang="cs" content="Ilustrace pro knihu Nakladatelství Bor">\n'+
'<link rev="made" href="mailto:pavel_koudelka@seznam.cz">\n'+
'<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon">\n'+
'<link rel="stylesheet" href="style.css" type="text/css">\n'+
'<title>'+Title+'</title>\n'+
'</head>\n'+
'\n'+
'<body>\n'+
'\n'+
'<div id="logo-picture"><img src="img/system/logo.png" alt="Nakladatelství Bor" width="80" height="38"></div>\n'+
'\n'+
'<div id="main-picture">\n'+
'\n'+
'<h3>'+Title+'</h3>\n'+
'<p>\n<a href="#" onclick="history.back(); return false;">Zpět</a></p>\n'+
'\n'+
'<img src="'+Src+'" title="'+Title+'" alt="'+Alt+'" onclick="history.back()">\n'+
'\n'+
'</div>\n'+
'\n'+
'</body>\n'+
'</html>');
}
}

