$(document).ready(
	function()
	{
		$('#windowOpen').bind(
			'click',
			function() {
				if($('#window').css('display') == 'none') {
					
					$('.flash').hide();
					
								
								
								
$('#windowTopContent').html('Подписка на дисконтные акции');								
$('#windowContent').html('<form name="reguser" id="reguser"><table  border="0" cellspacing="5" cellpadding="0" align="center"><tr><td align="right">Фамилия:</td><td><input type="text" id="fam"></td></tr><tr><td align="right">Имя:</td><td><input type="text" id="name"></td></tr><tr><td align="right">Отчество:</td> <td><input type="text" id="otch"></td></tr><tr><td align="right">Номер Вашего телефона:</td><td align="center" valign="middle"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td>(</td><td><input type="text" id="cod" value="495" size="4"></td>   <td>)</td><td><input type="text" id="telefon"></td></tr></table></td></tr><tr><td align="right">Ваш E-mail:</td><td align="left" valign="middle"><table border="0" cellspacing="0" cellpadding="0"><tr><td align="right"><input type="text" id="emailname" size="15"></td> <td align="left">@</td><td align="left"><input type="text" id="emails" size="6"></td></tr></table></td></tr><tr><td align="center" colspan="2"><br><input type="button" value="Зарегистрироваться" onClick="register_mail_user()"></td></tr></table></form>');
								
								
								
								
								
								
								
								$('#window').show();
					
				}
				this.blur();
				return false;
			}
		);
		$('#windowClose').bind(
			'click',
			function()
			{
				
				$('.flash').show();
				$('#window').hide();
			}
		);
		$('#windowMin').bind(
			'click',
			function()
			{
				$('#windowContent').SlideToggleUp(300);
				$('#windowBottom, #windowBottomContent').animate({height: 10}, 300);
				$('#window').animate({height:40},300).get(0).isMinimized = true;
				$(this).hide();
				$('#windowResize').hide();
				$('#windowMax').show();
			}
		);
		$('#windowMax').bind(
			'click',
			function()
			{
				var windowSize = $.iUtil.getSize(document.getElementById('windowContent'));
				$('#windowContent').SlideToggleUp(300);
				$('#windowBottom, #windowBottomContent').animate({height: windowSize.hb + 13}, 300);
				$('#window').animate({height:windowSize.hb+43}, 300).get(0).isMinimized = false;
				$(this).hide();
				$('#windowMin, #windowResize').show();
			}
		);
		$('#window').Resizable(
			{
				minWidth: 200,
				minHeight: 60,
				maxWidth: 700,
				maxHeight: 400,
				dragHandle: '#windowTop',
				handlers: {
					se: '#windowResize'
				},
				onResize : function(size, position) {
					$('#windowBottom, #windowBottomContent').css('height', size.height-33 + 'px');
					var windowContentEl = $('#windowContent').css('width', size.width - 25 + 'px');
					if (!document.getElementById('window').isMinimized) {
						windowContentEl.css('height', size.height - 48 + 'px');
					}
				}
			}
		);
	}
);
