// JavaScript Document
function otevriOkno2(obsah,width,height) {
		det=window.open(obsah,'Hudba','scrollbars=no,width='+width+',height='+height+',screenX='+getCenterW(width)+',screenY='+getCenterH(height)+',top='+getCenterH(height)+',left='+getCenterW(width));
		det.focus();
		}
		
				function getCenterW(width) {
			return parseInt( eval( (screen.width-parseInt(width))/2 ) );
		}
		function getCenterH(height) {
			return parseInt( eval( (screen.height-parseInt(height))/2 ) );
		}
