//Javascript for Results Pages Links

function GoToResult(page)
{
	document.getElementById("pageClicked").value = true;
	document.getElementById("pageNumberClicked").value = page;
	document.getElementById("MainForm").submit();
}


//Javascript for Photographs/Images


function Photographs_subjectClick(subjectRef)
{

	document.forms[0].SearchLocation.value = "";
	document.forms[0].SearchSubject.value = subjectRef;
	Photographs_submitForm();
	
}
	
function Photographs_localityClick(locality)
{
		document.forms[0].SearchLocation.value = locality;
		document.forms[0].SearchSubject.value = "";
		Photographs_submitForm();
}

function Photographs_submitForm()
{

	document.forms[0].SearchDescription.value = "";
	document.forms[0].SearchReference.value = "";
	document.forms[0].SearchDateFrom.value = "";
	document.forms[0].SearchDateTo.value = "";
	document.forms[0].imagedate.value = "";
	document.forms[0].submit();
}