
		// this function will validate the user data that is passed over 
		function Validate()
		{
		
			if (document.forms[0].searchText.value == "")
			{	
				alert("Please enter your key words.");	
				document.forms[0].searchText.focus();
				return false;
			}

		}	