// JavaScript Document
function login()
{
                var strPassword;
 
                strPassword=window.document.frmLogin.txtPassword.value;
        
        
				if (strPassword =="COBEC")
				{
					location.href="http://cobec.org/cobec_site/assisstance.html";
					}
				else {
					// clearForm();
					window.alert("You entered the wrong password. Try again.");
					document.frmLogin.reset();
				}
		
			}