function OpenVirtualTour(sFrsCode){
	window.open("http://www.destinvacation.com/wVirtualTour.aspx?FrsCode=" + sFrsCode, "VirtualTour", "width=530,height=350,toolbar=0,menubar=0")
}
function OpenVirtualTourUrl(sUrl){
	window.open(sUrl, "VirtualTour", "width=617,height=400,toolbar=0,menubar=0,scrollbars=1")
}
function OpenPhotos(iRentalId, iPhotoNo){
	window.open("http://www.destinvacation.com/wRentalPhotos.aspx?RentalId=" + iRentalId + "&PhotoNo=" + iPhotoNo, "Photos", "width=320,height=250,toolbar=0,menubar=0")
}
function OpenBigPhotos(iRentalId, iPhotoNo){
	window.open("http://www.destinvacation.com/wRentalPhotosBig.aspx?RentalId=" + iRentalId + "&PhotoNo=" + iPhotoNo, "Photos", "width=620,height=450,toolbar=0,menubar=0")
}
function SwitchRateView(sType){
	if (sType == "PerPerson"){
		document.getElementById("RateTabPerPerson").src = "Images/RateTabPerPersonO.gif";
		document.getElementById("RateTabStandard").src = "Images/RateTabStandard.gif";
		document.getElementById("RatesPerPerson").style.display = "block";
		document.getElementById("RatesStandard").style.display = "none";
	}
	else {
		document.getElementById("RateTabPerPerson").src = "Images/RateTabPerPerson.gif";
		document.getElementById("RateTabStandard").src = "Images/RateTabStandardO.gif";
		document.getElementById("RatesStandard").style.display = "block";
		document.getElementById("RatesPerPerson").style.display = "none";
	}
}