<!---

function checkPlaceNameLength_e(SearchText)
	{
		if (SearchText.value.length < 3)
			{
				alert("Please type a place name or part of a place name to begin your search. Entered text must be a minimum of three characters in length.");
				return (false);
			}
		else
			if (SearchText.value <= '   ')
			{
				alert("Entered text must not be 3 blank characters and have a minimum of three characters in length.");
				return (false);			
			}
			else
				return (true);
	}

	function checkPlaceNameLength_f(SearchText)
	{
		if (SearchText.value.length < 3)
			{
				alert("Veuillez entrer le nom d'une localité ou un nom partiel de localité afin de commencer votre recherche. Le texte que vous entrez doit comprendre au moins trois caractères.");
				return (false);
			}
		else
			if (SearchText.value <= '   ')
			{
				alert("Le texte que vous entrez ne doit pas être 3 espaces et doit comprendre au moins trois caractères.");
				return (false);			
			}
			else		
				return (true);
	}	

	function openWindow(URL)
	{
		window.open(URL, 'popup', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left=0,top=0,width=780,height=600');
	}

// --->

