// JavaScript Document
function openWindowImage(href, x, y, nazev) {
	if(x>document.body.clientWidth) {
		x = document.body.clientWidth;
	}
	if(y>document.body.clientHeight) {
		y = document.body.clientHeight;
	}
	var horni = document.body.clientHeight - y - 20;
	var levy = document.body.clientWidth - x - 20;
	return okno = window.open(href, nazev, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width='+x+', height='+y+', top='+horni+', left='+levy+'');
}
function openWindow(href, nazev) {
	return seznam = window.open(href, nazev, 'toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes, width='+screen.width+', height='+screen.height+', top=0, left=0');
}

