function zoom(jmeno,w,h)
{
	helpw=(window.screen.width - w)/2;
	helph=(window.screen.height - h - 20)/2;
	var okno=window.open('','okno','width='+w+',height='+h+',resizable=1,menubar=0,toolbar=0,left='+helpw+',top=10,directories=0,location=0,scroolbars=yes,copyhistory=0,status=1');
	okno.document.open();
	okno.document.writeln('<html>\n<head>\n<title>zoom fotky</title>\n</head>\n<body topmargin="3" leftmargin="0">');
	okno.document.writeln('<p align="center" >');
	okno.document.writeln('<img style="cursor:pointer;" src="'+jmeno+'"  alt="kliknutim zavrete" onClick="window.close()">');
	okno.document.writeln('</p>');
	okno.document.writeln('</body>\n</html>');
	okno.document.close();
	h=h+70;
	w=w+30;
	okno.resizeTo(w,h);
	okno.moveTo(helpw,helph);
	okno.focus();
}

function zoom(jmeno,w,h)
{
        helpw=(window.screen.width - w)/2;
        helph=(window.screen.height - h - 20)/2;
        var okno=window.open('','okno','width='+w+',height='+h+',resizable=1,menubar=0,toolbar=0,left='+helpw+',top=10,directories=0,location=0,scroolbars=yes,copyhistory=0,status=1');
        okno.document.open();
        okno.document.writeln('<html>\n<head>\n<title>zoom fotky</title>\n</head>\n<body bgcolor="#DFE0E3" topmargin="3" leftmargin="0">');
        okno.document.writeln('<p align="center" >');
        okno.document.writeln('<img style="cursor:pointer;" src="'+jmeno+'"  alt="kliknutim zavrete" onClick="window.close()">');
        okno.document.writeln('</p>');
        okno.document.writeln('</body>\n</html>');
        okno.document.close();
        h=h+70;
        w=w+30;
        okno.resizeTo(w,h);
        okno.moveTo(helpw,helph);
        okno.focus();
}

function goToUrl(url) {
// alert("here");
window.location = url;
}

