function showDetail(obsah,width,height) {
	okno=window.open(obsah,'detail','scrollbars=yes,resizable=yes,resize=yes,status=yes,width='+width+',height='+height+',screenX='+getCenterW(width)+',screenY='+getCenterH(height)+',top='+getCenterH(height)+',left='+getCenterW(width));
	okno.focus();
}
function getCenterW(width) {
	return parseInt( eval( (screen.width-parseInt(width))/2 ) );
}
function getCenterH(height) {
	return parseInt( eval( (screen.height-parseInt(height))/2 ) );
}

function show() {
	var vybrane=document.forms.fZajem.zajem.value;
	var pocet=document.forms.fZajem.zajem.options.length;
	for(i=1;i<pocet;i++) { //vse skryt
		eval("document.getElementById('z"+i+"').style.display='none'");
	}
	if(vybrane!='0') {//prvni polozka v seznamu je jen popisek
		eval("document.getElementById('z"+vybrane+"').style.display='inline'"); //zobrazit vybrane
	}
}
