I am trying to achieve a full screen popup with a close button. 1) I have tried this
<div data-role="popup"  id="popupid" data-overlay-theme="a" data-theme="c"  class="ui-corner-all">
    <div data-role="page" data-fullscreen="true">
        <p>This is a completely basic popup, no options set.<p>
    </div>
</div>  
The problem is page doesn't showup
2) I have tried setting popup height to 100% and width to 100% , it doesnt help
The desired result is http://dl.dropboxusercontent.com/u/174493814/OverlayPopupDialog.png
Any tips ? Should I need to use Jquery Dialog to achieve the desired result ? Thanks!