// This function opens the window for floor plans.
function floorplanOpen(vURL)
{
	var FloorPlan = null;
	FloorPlan = window.open(vURL, 'FloorPlan', 'toolbar=no,location=no,scrollbars=yes,titlebar=no,fullscreen=no,status=no,width=550,height=650');
	FloorPlan.focus();
}

// This function opens the window for gallery photos.
function galleryOpen(vURL)
{
	var Gallery = null;
	Gallery = window.open(vURL, 'Gallery', 'toolbar=no,location=no,scrollbars=yes,titlebar=no,fullscreen=no,status=no,width=550,height=450');
	Gallery.focus();
}

// This function opens the window for virtual tours.
function TourOpen(vURL)
{	
	var Tour = null;
	Tour = window.open(vURL,"Tour","width=425,height=375,toolbar=0,menubar=0,location=0,status=0,directories=0,scrollbars=0,resizable=0");
	Tour.focus();
}

