just point to a script file on a server you control.
fill it with something like this.
ver.js:
Code:
incomingVersionInfo({
title: "my app name",
version: 2.002,
updated: new Date(2010, 11, 25)
});
you can edit that js file when you build and test your new version.
in your app,
Code:
<script>
function incomingVersionInfo(info){
if(info.version != App.version){
var proceed=confirm("This software is out of date!\n\n Upgrading to the new version (" + info.version+ ") from "+info.updated.toDateString() );
if(proceed){
// now send them to update if they want to (you code this part)
}//end if userok
}//end if out of date
}//end incomingVersionInfo()
</script>
<script src="http://myserver.com/apps/updates/myappname/ver.js"></script>