jQuery(document).ready(function (e) {
Init();
jQuery( "#bu" ).click( function() {
		jQuery("#dialog").dialog({
            open: function() {
				jQuery(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar-close").remove();
  				},
			width: 450,
			height: 428,
			modal: true,
            draggable: false,
            closeOnEscape: true,
            resizable: false
            })
 	var sd = {};
 	jQuery( "#fid input[type=text], #fid input[type=checkbox]:checked, #fid select" ).each( function() {
		var name;
		name = jQuery( this ).attr( "name" );
		sd[ name ] = this.value;
 	});
 	jQuery( "#fid input, #fid select" ).each( function() {
			this.disabled=1;
 	});
 	jQuery.post( "tours.php", sd, function( data ) {
      jQuery( "#TARGET" ).html( data );
 		});
	});

	jQuery( "#TARGET" ).ajaxComplete( function () {
    jQuery("#dialog").dialog("close");
    jQuery("#openpage").dialog("close");
	jQuery( "#fid input, #fid select" ).each( function() {
	this.disabled=0;
 		});
	});




});
