function oauth(url, title)
{
	var width = 560;	// ширина окна
	var height = 325;	// высота окна

	// Отступ слева
	var left = parseInt(document.documentElement.clientWidth / 2 - width / 2);
	var top = 250; // Отступ сверху


	var params = 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes';
	oauthWindow = window.open(url, title, params);

	return false;
}

function reload(){
	window.location.reload();
}
