var vyska=screen.availHeight-300;
var x=document.getElementById("vlavo");
x.style.height=vyska+"px";

function zvyrazni(obj,w,color) {
	var tds = obj.getElementsByTagName('td');
	for(i=0;i < tds.length;i++) {
		if (w == 1)
			tds[i].style.backgroundColor = color;
		else
			tds[i].style.backgroundColor = '';
	}
}

function fotka (foto,nazov,sirka,vyska,titulka)
{
	if(vyska>screen.height-200)
	{
		sirka*=(screen.height-200)/vyska;
		sirka=Math.ceil(sirka);
		vyska=screen.height-200;
	}
	xxx = window.open("",nazov,'width='+sirka+',height='+vyska+',top=10,left=10')
	with(xxx.document)
	{
		open();
		writeln('<html>\n<head>\n<title>'+titulka+'</title>\n</head>\n');
		writeln('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
		writeln('<img src="'+foto+'"onclick="window.close()" style="cursor: pointer" width='+sirka+' height='+vyska+'>');
		writeln('</body>\n</html>');
		close();
	}
}

function fotka1 (foto,nazov,titulka)
{
	xxx = window.open("",nazov)
	with(xxx.document)
	{
		open();
		writeln('<html>\n<head>\n<title>'+titulka+'</title>\n</head>\n');
		writeln('<body>\n<div style=" text-align:center;">\n');
		writeln('<img src="'+foto+'"onclick="window.close()" style="cursor: pointer;" />');
		writeln('</div></body>\n</html>');
		close();
	}
}
