

function startTour(tour)
{
	self.name = "main";
	VTWindow = window.open("virtual_tour.php?tour="+tour, tour, 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0');
	VTWindow.resizeTo(764, 600);
}
function Register(tour)
{
	window.close();
	window.parent.location.href="reservation.php?tour="+tour;
}
function closeVTWindow()
{
	VTWindow.close();
}
function closeRemote() {
	timer = setTimeout('window.close();', 10);
}
function popup(url,width,height)
{
	self.name = "main";
	PUWindow = window.open(url, "popup", 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0');
	PUWindow.resizeTo(width, height);
}