function openWindow(obsah,width,height) {
		mapa_tisk=window.open(obsah,'detail','scrollbars=no,resizable=yes,resize=yes,width='+width+',height='+height+',screenX='+getCenterW(width)+',screenY='+getCenterH(height)+',top='+getCenterH(height)+',left='+getCenterW(width));
		mapa_tisk.focus();
}
function getCenterW(width) {
	return parseInt( eval( (screen.width-parseInt(width))/2 ) );
}
function getCenterH(height) {
	return parseInt( eval( (screen.height-parseInt(height))/2 ) );
}
function otevriOkno(obsah,width,height) {
det=window.open(obsah,'detail','scrollbars=no,width='+width+',height='+height+',screenX='+getCenterW(width)+',screenY='+getCenterH(height)+',top='+getCenterH(height)+',left='+getCenterW(width));
det.focus();
}
