// PI Web.js
// JavaScript functions for the Persistent Image web site

var siteWindow = null;
var flashFile = "PIWeb2004.swf";

function initSite(){
	createConfirmWin("<div id='idFlash'></div>");
}

function createConfirmWin(text){
	siteWindow = new Window("winID", {/*className: "alert",*/ url: "PIWeb2007.html", width:640, height:480, zIndex: 100, resizable: false, draggable:false, closable:false, minimizable:false, maximizable:false})
	siteWindow.setDestroyOnClose();
	siteWindow.setStatusBar("Copyright &copy 2009, Persistent Image, Inc. All rights reserved.")
	siteWindow.showCenter(true);	
}

function sayGoodbye(){
	siteWindow.setURL("thanks.html");
}