// JavaScript Document
// to gallery
function zoom(num,celed,title)
{

no=window.open("","zoom","left=10,top=10,width=800,height=600,"+
    "toolbar=no,location=no,directories=no,status=no,menubar=no"+
    ",scrollbars=no,resizable=no,copyhistory=no");

with (no.document)    
{
open();
write('<?xml version="1.0" encoding="iso-8859-2"?>');
write('\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-strict.dtd">');
write('\n<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">\n<head>');
write('\n<meta http-equiv="content-type" content="text/html; charset=iso-8859-2" />');
write('\n<title>'+title+'</title>\n<style type="text/css">\n');
write('<!--\nbody { margin-top:0px;margin-left:0px;}\n-->\n');
write('</style>\n<\head>\n<body><div style="text-align:center">');
write('<a href="javascript:close();" title="'+title+'">');
write('<img src="'+celed+'/'+num+'.jpg" width="800" height="600" border="0" alt="'+title+'"></a></div></body>\n</html\n');
close();
}

no.document.focus();
}

//to clanky
function z(n,title)
{

nu=window.open("","zoom","left=10,top=10,width=800,height=600,"+
    "toolbar=no,location=no,directories=no,status=no,menubar=no"+
    ",scrollbars=no,resizable=no,copyhistory=no");

with (nu.document)    
{
open();
write('<?xml version="1.0" encoding="iso-8859-2"?>');
write('\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-strict.dtd">');
write('\n<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">\n<head>');
write('\n<meta http-equiv="content-type" content="text/html; charset=iso-8859-2" />');
write('\n<title>'+title+'</title>\n<style type="text/css">\n');
write('<!--\nbody { margin-top:0px;margin-left:0px;}\n-->\n');
write('</style>\n<\head>\n<body><div style="text-align:center">');
write('<a href="javascript:close();" title="'+title+'">');
write('<img src="clanky/'+n+'.jpg" width="800" height="600" border="0" alt="'+title+'"></a></div></body>\n</html\n');
close();
}

nu.document.focus();
}
