/**
 *
 */ 

function popupimg (id, format, desc, basedir) {
	if (format == 't') {width=60;height=45;}
	if (format == 'tp') {width=45;height=60;}
	if (format == 's') {width=120;height=90;}
	if (format == 'sp') {width=90;height=120;}
	if (format == 'm') {width=240;height=180;}
	if (format == 'mp') {width=180;height=240;}
	if (format == 'l') {width=360;height=270;}
	if (format == 'lp') {width=270;height=360;}

	padding = 10;

	// unikatni nazev okna
	name = 'preview_' + id;

	var inst = window.open('', name, 'width=' + (width+2*padding) + ',height=' + (height+2*padding) +',resizable=no,scrollbars=no,menubar=no,status=no,toolbar=no,location=no,directories=no');

	inst.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	inst.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">');
	inst.document.writeln('<head>');
	inst.document.writeln('<meta http-equiv="content-type" content="text/html; charset=utf-8" />');
	inst.document.writeln('<meta http-equiv="content-language" content="cs" />');
	inst.document.writeln('<title>' + desc + '</title>');
	inst.document.writeln('<style type="text/css">');
	inst.document.writeln('<!--');
	inst.document.writeln('body {margin:0;padding:' + padding +'px;}');
	inst.document.writeln('-->');
	inst.document.writeln('</style>');
	inst.document.writeln('</head>');
	inst.document.writeln('<body>');
	inst.document.writeln('<img src="' + basedir + 'lib/img.php?id=' + id + '&amp;' + format + '" width="' + width + '" height="' + height + '" alt="' + desc + '" title="Kliknutím zavřete náhled" onclick="window.close()" />');
	inst.document.writeln('</body>');
	inst.document.writeln('</html>');
	inst.document.close();
}

