$(document).ready(function(){
	$('a#show_new_oferta').css('display', 'inline').click(function(){
		var $dialog = $('<div style="overflow: hidden"><iframe src="/oferta.php?short" style="width: 100%; height: 100%; border: 1px solid #AAAAAA"></iframe></div>');
		
		$dialog.dialog({
			autoOpen:	false,
			title:		'Пожалуйста, ознакомьтесь с условиями договора-оферты',
			resizable:	false,
			width:		640,
			height:		480,
			modal:		true,
			buttons:	{
				'Не принимаю':	function(){
					alert('Принятие условий договора-оферты является обязательным для дальнейшего пользования сервисом ХочуЗнать.com');
					$dialog.dialog('destroy');
				},
				'Принимаю':	function(){
					JsHttpRequest.query(
					'/user.php?ajax',
					{
						cmd: 'user accepts oferta'
					},
					function(result, errors)
					{
						if (errors) alert(errors);
						
						if (result.success)
						{
							document.location.reload();
						}
					},
					true
				)}
			}
		});
		
		$dialog.dialog('open').dialog('option', 'position', 'center');
	});
	
	$('a#show_oferta').click(function(){
		var $dialog = $('<div style="overflow: hidden"><iframe src="/oferta.php?short" style="width: 100%; height: 100%; border: 1px solid #AAAAAA"></iframe></div>');
		
		$dialog.dialog({
			autoOpen:	false,
			title:		'Договор-оферта',
			resizable:	false,
			width:		640,
			height:		480,
			modal:		true,
			buttons:	{
				'Ок':	function(){
					$dialog.dialog('destroy');
				}
			}
		});
		
		$dialog.dialog('open').dialog('option', 'position', 'center');
		
		return false;
	});
});

