function launchMonterey() {
var left = Math.floor( (screen.width - 780) / 2);
var top = Math.floor( (screen.height - 450) / 2);
var winParms = "top=" + top + ",left=" + left + ",height=" + 450 + ",width=" + 780;
var win = window.open('http://studio.waxedfruit.com/mercury/programming/monterey/index.html','MONTEREY',winParms);
if (parseInt(navigator.appVersion) >= 4) {
win.window.focus();
}
return win;
}