function displayPhoto(s)
{
	var searchForm = document.getElementById("thisForm");
	if (searchForm != null)
		searchForm.LARGE_PHOTO.src=s;
	else
		LARGE_PHOTO.src=s;
}

function displayMorePhotos(prev, next)
{
	document.getElementById(prev).style.display = 'none';
	document.getElementById(next).style.display = 'block';
}
function WTV_onimageload(id, url, caption) {
	document.getElementById(id).innerHTML =
	 "<a href = \"#\" onclick=\"window.open(\'" + url + "\',\'\', \'width= 700,height= 450\')\">Take a virtual tour<br>of this hotel &raquo;</a>";
}
function APPLEMOV_onimageload(id, url, caption) {
	document.getElementById(id).innerHTML =
	 "<a href = \"JavaScript: openVideo(\'" + url + "\');\" >Take a virtual tour<br>of this hotel &raquo;</a>";
}
//Function to open the hotel video clips. 
function openVideo(videoURL)
{	
	window.open(videoURL, "Video", 'width=300,height=300,scrollbars=no,toolbar=no,resizable=no');
}



