function Save()
		{
					var errorcode

					errorcode = " "
					if (document.forms["Form2"].searchtext.value.length == 0)
						{
							alert("Search text must not be blank")
							errorcode = "E"
							return;
							}

						if (errorcode == " ")
						{
						document.forms["Form2"].submit()
						return true;
						}
					}
