// Display the ascent details for a single ascent
function Dsp_A(AscentID)
{
	textWindow = window.open("/Includes/Display_Ascent.php?AscentID=" + AscentID, "Ascent", "width=565,height=400,resizeable=yes,scrollbars=yes")
	textWindow.opener = window.top
	textWindow.opener.name = "opener";
	textWindow.focus()
}

// Display the trip details for a single ascent
function Dsp_T(AscentID)
{
	textWindow = window.open("/Includes/Display_Trip.php?AscentID=" + AscentID, "Trip", "width=565,height=400,resizeable=yes,scrollbars=yes")
	textWindow.opener = window.top
	textWindow.opener.name = "opener";
	textWindow.focus()
}

// Display the google map for a hill
function Dsp_GM(HillID)
{
	textWindow = window.open("/Includes/GoogleMapSingleHill.php?ID=" + HillID, "GMap", "width=600,height=500,resizeable=no,scrollbars=no")
	textWindow.opener = window.top
	textWindow.opener.name = "opener";
	textWindow.focus()
}

// Display the google map for a trip
function Dsp_GMT(AscentID)
{
	textWindow = window.open("/Includes/GoogleMapSingleTrip.php?ID=" + AscentID, "GMap", "width=600,height=500,resizeable=no,scrollbars=no")
	textWindow.opener = window.top
	textWindow.opener.name = "opener";
	textWindow.focus()
}

// Validate the Reviews form
function ValidateEmail(form)
{
	// Email address must be specified
	if (form.address.value == "")
	{
		alert("Please specify an email address.");
		form.address.focus();
		return false;
	}

	// All is valid
	return true;
}