Compact Framework
When a flake is exported and placed on an external web site (i.e. not on pageflakes.com), it runs on a different, less functional version of the Pageflakes framework, also known as the Compact Framework. For example, you can’t use App.showHtmlViewer or create popup windows.
The following methods will not work in the Compact Framework:
FSO.resize()
FSO.close()
App.showHTMLViewer()
App.createPopup()
App.createPopupPage()
In addition, blockUI() and unblockUI() have a limited effect within the IFRAME that the flake is being displayed in.
Because of this, when a flake is running inside an IFRAME on a different website, those features should be turned off. The Compact Framework can be detected as follows:
if (App.IsCompactFramework)
{
//do necessary things for compact framework display
}

