function photoWindowOpen(section,subsection,number,width,height)
{
	var left;
	var top;

	height += 24;
	width += 24;
	
	bName = window.navigator.appName;
	
	if (bName == "Microsoft Internet Explorer")
	{
		left = Math.round((screen.width/2-width/2));
		top = Math.round((screen.height/2-height/2));
	}
	else
	{	
		left = Math.round((window.innerWidth/2-width/2));
		top = Math.round((window.innerHeight/2-height/2));
	}

	window.open('http://www.sport-jicin.cz/photo.php?section='+section+'&subsection='+subsection+'&number='+number, 'photogallery', 'width='+width+',height='+height+',menubar=no,resizable=no,left='+left+',top='+top+',status=no');
}