function OpenDialog(url,width,height)
{
	var popupBlockedMessage = "Похоже, что Ваш браузер использует блокировку всплывющих окон. Отключите блокировку для данного сайта, чтобы увидеть окно с фотографией и описанием.";

	positionCode='';
	sw  = screen.width;
	sh  = screen.height;
	wbx = Math.round((sw-width)/2);
	wby = Math.round((sh-height)/2 - sh*0.05);
	isIE = navigator.appName.indexOf('Microsoft')>=0;
	
	if( isIE )
	{
		positionCode='left='+wbx+',top='+wby+',';
	}
	else
	{
		positionCode='screenX='+wbx+',screenY='+wby+',';
	}	
		

	wnd = window.open(url, null, positionCode+'toolbar=no,menubar=no,status=no,scrollbars=auto,resizable=yes,width=' + width + ',height=' + height);
	
	if ((wnd == null) || (typeof(wnd) == "undefined"))
	{
		alert(popupBlockedMessage);
		return;
	}
	
	wnd.focus();
	return false;
}
