var maxx = 750; var maxy = 550;
if (screen) { maxx = screen.availWidth-100; maxy = screen.availHeight-100; }

function foto(id,x,y,title)
{
	url = "http://i.ck.cz/f/" + Math.floor(id/100) + '/' + (id%100) + ".jpg"
	return foto2(url,x,y,title);
}

function fotoa(a,x,y,title)
{
	url = a.href;
	return foto2(url,x,y,title);
}

function foto2(url,x,y,title)
{
	if (x>maxx) { y=(maxx/x)*y; x=maxx; }
	if (y>maxy) { x=(maxy/y)*x; y=maxy; }
	
	var yy=y;
	if (title>'') yy+=14; else title='';

	w = window.open('','_blank','height='+(yy+2)+',width='+(x+2)+',top='+50+',left='+50+
		',toolbar=no,minimize=no,status=yes,resizable=no,menubar=no,location=no,scrollbars=no')
	if (w) {
		w.document.write('<html><head><title>' + title + '</title></head><body ',
			'style="margin:0;padding:0;background:#000;color:#fff;font-family:Verdana;font-size:11px;"',
			' onload="window.status=\'' + title + '\'">',
			'<img src="' + url + '" width=' + x + ' height=' + y + ' onclick="window.close()" ',
			'alt="Kliknutím se okno zavře" style="border:1px solid #000;cursor:hand"><br>',
			'&nbsp;' + title + '<br></body></html>');
		w.document.close();
		w.focus();
	}

	return false;
}


