<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->

function Popupwin(href,windowname,width,height) {
	this.href = href;
	this.windowname = windowname;
	this.width = width;
	this.height = height;
	this.top = 0;
	this.left = 0;
	this.toolbar = 0;
	this.statusbar = 0;
	this.resize = 0;
	this.scrollbars = 0;
	
	this.centerpopup = centerpopup;
	this.popwindow = popwindow;
	this.enableStatusbar = enableStatusbar;
	this.enableResize = enableResize;
	this.enableScrollbars = enableScrollbars;
	this.enableToolbar = enableToolbar;
	this.popwindow = popwindow;
}
function enableStatusbar() {
	this.statusbar = 1;
}
function enableResize() {
	this.resize = 1;
}
function enableScrollbars() {
	this.scrollbars = 1;
}
function enableToolbar() {
	this.toolbar = 1;
}
function centerpopup() {
	this.top = ((screen.height - this.height) / 2);
	this.left = ((screen.width - this.width) / 2);
}
function popwindow() {
	window.open(this.href, this.windowname, 'top='+this.top+',left='+this.left+'+,toolbar='+this.toolbar+' status='+this.statusbar+',resizable='+this.resize+',Width='+this.width+',height='+this.height+',scrollbars='+this.scrollbars);
}
function createpop() {
		popwin = new Popupwin('http://www.sepielli.com/flash/changejourney.html','popwin',770,500);
		popwin.centerpopup();
		popwin.popwindow();
}