// Enlarge images in a new window
function popImages(imagename)
{
	window.open('imagepopup.asp?imgSelected='+imagename, 'hotelphotos', 'top=100, left=100, width=400, height=425, location=no, address=no, scrollbars=no');
}

function popSlideShow()
{
	window.open('slideshow.asp', 'hotelphotos', 'top=100, left=100, width=400, height=425, location=no, address=no, scrollbars=no');
}

function redirect(pulldown) 
{
	newlocation = pulldown[pulldown.selectedIndex].value;
	if (newlocation != "")
		self.location = newlocation;
}

function resetIfBlank(pulldown)
{
  possiblenewlocation = pulldown[pulldown.selectedIndex].value;
	if (possiblenewlocation == "")
		pulldown.selectedIndex = 0; /* reset to start since no movement */
}