function Post()
	{
	 	if ( !CheckEmailAddress( document.frmLostAndFound.txtEmail.value, "OLD e-mail Address" ))		{
			return false;
		}

		if( document.frmLostAndFound.txtEmail.value.length > 0 ){
			if( window.document.frmLostAndFound.txtEmail.value == window.document.frmLostAndFound.prev_search.value ){
				window.alert( "Please change email address: " + window.document.frmLostAndFound.txtEmail.value + ", which could not be found." );
				return false;
			}
			
			document.frmLostAndFound.submit();
		
		}
				
	
	}

	function Status(text)
	{
		window.status = text;
	}
/*
	//Update the Middle section of the page
	// MainText is the Div or Span Tag for the middle of the screen	
	function UpdateDisplay(text)
	{
		OldText.innerHTML = MainText.innerHTML;
		MainText.innerHTML = text;
	}

	// Reset the main text with what was there before.
	function ResetDisplay()
	{
		MainText.innerHTML = OldText.innerHTML;
	}
*/