var _BASE_URL = '/zakupki/';

$(document).ready(function () {
	$('#enterUser').click(function (e) {
		
		$('#enterm').dialog({
			autoOpen: true,
			bgiframe: true,
			width:270,
			height:220,
			resizable: false,
			draggable: false,
			position: "center",
			modal: true,
			overlay: {
				backgroundColor: '#000',
				opacity: 0.5
			},
			open: function(){ $('#enterm').html($('#enterModel').html()); $(this).dialog('open');
				$('.ui-dialog-titlebar-close').blur();
			},
			close: function (){ $(this).dialog('destroy'); $('#enterm').html(''); $('#enterm').removeAttr('style'); }
		});
	   return false;
	 });
	
	$('#fullsearch a.modal').click(function (e) {

		$('#box_begin_date').html('<input type="text" class="dateField" name="s_begin_date" />');
		$('#box_end_date').html('<input type="text" class="dateField" name="s_end_date" />');
		
$('#searchm').dialog({
		autoOpen: true,
		bgiframe: true,
		width:240,
		height:320,
		resizable: false,
		draggable: false,
		position: "center",
		modal: true,
		overlay: {
			backgroundColor: '#000',
			opacity: 0.5
		},
		open: function(){ 
			$('#searchm').html($('#searchModal').html()); $(this).dialog('open'); $('.ui-dialog-titlebar-close').blur();
		},
		close: function (){ $(this).dialog('destroy'); $('#searchm').html(''); $('#searchm').removeAttr('style'); }
	});
		if($("#searchm .dateField").length) {
			$("#searchm .dateField").datepicker($.extend({}, 
			$.datepicker.regional["ru"], { 
				dateFormat: "yy-mm-dd",
				showStatus: true, 
				showOn: "both", 
				buttonImage: _BASE_URL+"images/date.png", 
				buttonImageOnly: true 
			})); 
		}

		return false;
	});
if($(".adddate").length) {
	$(".adddate").datepicker($.extend({}, 
	$.datepicker.regional["ru"], { 
		dateFormat: "yy-mm-dd",
	    showStatus: true, 
	    showOn: "both", 
	    buttonImage: _BASE_URL+"images/date.png", 
	    buttonImageOnly: true 
	})); 
}
	
});
