window.focus();
var reload=1;
var curFirstTour=1;
function launchTour()
{
	top.frames["qtmovie"].ReloadTourSWF(curFirstTour);
	reload=0;
}

function jumpbox(tourname)
{
	if(tourname == "flyer.fdf")
	{
	    window.open(tourname);
	    return;
	}
	var destination=window.qtmovie;
	var thebox=document.d352;
	if(tourname>0 && reload ==0)
	{
		top.frames["qtmovie"].ChangePano(tourname);
	}
	else if(tourname>0 && reload ==1)
	{
		curFirstTour=tourname;
		reload=1;
		destination.location.href="vt.htm";
		return;
	}
	else
	{
		destination.location.href=thebox.d343.options[thebox.d343.selectedIndex].value;
		reload=1;
	}
}

function updateHelp()
{
	var indexnum=document.d352.d343.options.length;
	indexnum--; //help is always last index
	document.d352.d343.options.selectedIndex=indexnum;
	reload=1;
}

function isNav() {
	return (navigator.appName == "Netscape")
}

function isIE() {
	return (navigator.appName == "Microsoft Internet Explorer")
}

function correctsize()
{
	if(screen.width==800) // if knuckleheads still running in 800x600
	{
		window.moveTo(0,0);
		window.resizeTo(800,600);
	}
	else // they're at least running in 1024x768
	{
		window.moveTo((screen.width-980)/2,(screen.height-770)/2);
		window.resizeTo(980,770);
	}
		window.qtmovie.location.href="vt.htm";
}

