function Login_onclick() {
	if (document.TheForm.UserName.value == "" || document.TheForm.password1.value == "") {
		alert ("User Name and Password are required !!!");
		document.TheForm.UserName.focus();
	}
	else
		document.TheForm.submit();
}