Loading existing html pages into a jQuery dialog window.

Loading existing html pages into a jQuery dialog window.

Before I dive into the jQuery UI I wonder if I could ask a question to see if it will easily do what I want. I have about 20 html pages that I popup with the "old school" window.open. These allow the user to build items on a virtual lunch menu.  Selecting the "classic sandwich," for example, pops up a window and loads classic.html into it, which shows the user the attached classic.png display.  Selecting "drinks" on the main menu pops up a dialog and loads drinks.html, which shows the attached drinks.png.  I'd like to implement these, maybe, with the jQuery UI to give the site a more modern look and to get rid of the XP bars on the top and the bottom.  It would be nice if I could also make the popups modal, so clicking back on the main page doesn't make them disappear behind the main page, as it does now. 

So the first question is, can the jQuery UI dialogs support the functionality I have in my forms?  

Second, is there a simple way to load the "classic.html" file, the "drinks.html" file, and all the other html files directly into the jQuery dialogs I pop up, so I don't have to recode the forms?

Thanks for any info.