function zmLocationSelected(x, y)
{
	try
	{
		document.getElementById(idEasting).value = x;
		document.getElementById(idNorthing).value = y;
	}
	catch (e) {}
}

function zmLocationNames(sDistrict, sDivision, sParish, sPostcode, sWard)
{

	
	try
	{document.getElementById(idPostcode).value = sPostcode;}
	catch (e) {}

	try
	{document.getElementById(idParish).value = sParish;}
	catch (e) {}

	try
	{document.getElementById(idPartner).value = sDistrict;}
	catch (e) {}

	document.forms[0].submit();
	
	
	

	
}

function showZoomMap()
{
	try
	{
		oZoomWindow = window.open(sZoomWindowURL, "osZoomMap", sZoomWindowURLFeatures);
	}
	catch (ex)
	{
	}
}

