close fullscreen
$(function() {
    $( ".modal-window" ).dialog({
        modal:true, width:"46%", buttons: {
            Ok: function() {
               $( this ).dialog( "close" );
            }
          }
      });
  });