var wind;
function win(n, f, w, h) {
	if (typeof(wind) == "object") {
		wind.close();
	}
	x = Math.round((window.screen.width - w) / 2);
	y = Math.round((window.screen.height - h) / 2 / 2);
	wind = window.open('', '', 'scrollbars=no,noresizable,height='+h+',width='+w+',top='+y+',left='+x);
	wind.document.open();
	wind.document.write('<html><head><title>'+ n +'</title><style type="text/css">body {margin:0px;overflow:hidden;} img {border:0}</style></head><body><a href="#" onclick="window.close(); return false"><img src="'+f+'" alt="'+ n +'" title="'+ n +'" /></a></body></html>');
	wind.document.close();
	return true;
}
var win;

function Otevri_okno(url,w,h)
{
window.open(url, 'Order', 'toolbar=no, menubar=no, location=no, directories=no, scrollbars=no, resizable=no, status=no, width='+w+', height='+h+', top=20, left=20')
}


