function new_window(cislo,obrazek,sirka,vyska,popis){
	MAX_width=screen.availWidth-10;
	MAX_height=screen.availHeight-37;
	OKNO_sirka=parseInt(sirka);
	OKNO_vyska=parseInt(vyska);
	if(parseInt(sirka)>MAX_width-10){OKNO_sirka=parseInt(MAX_width);OKNO_top=0;scrollbar=1;}else{OKNO_top=10;scrollbar=0;}
	if(parseInt(vyska)>MAX_height-10){OKNO_vyska=parseInt(MAX_height);OKNO_left=0;scrollbar=1;}else{OKNO_left=10;scrollbar=0;}
	no = window.open("",""+cislo+"","left="+OKNO_left+",top="+OKNO_top+",width="+OKNO_sirka+",height="+OKNO_vyska+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scrollbar+",resizable=no,copyhistory=no");
	with (no.document){
		open();
		writeln('<html><meta http-equiv="content-type" content="text/html;charset=windows-1250"><title>Náhled</title><link rel="StyleSheet" href="style.css" type="text/css"><body style="background: black;" leftmargin="10" rightmargin="0" topmargin="10" marginheight="0" marginwidth="0" bottommargin="0" onBlur="window.self.close()">');
		//writeln('<div style="position: absolute; left: 10px; top: 10px; background: gray; color: white;">Načítám obrázek..</div>');
		writeln('<img src="'+obrazek+'" alt="" border="0" onclick="javascript:window.close();"><br>');
		writeln('<div align="center">'+popis+'</div>');
		writeln('</body></html>');
		close();
	}
}

function new_windowAll(idfoto, kat){
	MAX_width = screen.availWidth;
	MAX_height = screen.availHeight;
	send_height = screen.availHeight;
	no = window.open("nahledy.php?id="+idfoto+"&kat="+kat+"&start=1&max_height="+send_height+"","1","left=0,top=0,width="+MAX_width+",height="+MAX_height+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no");
}
