function goLogin(){
	var user = document.getElementById('user').value;
	var pass = document.getElementById('pass').value;

	if (user == ""){
		window.alert("Please enter Username!");
		return false;
	}
	else if (user.match("'") == "'" || user.match("=") == "="){
		window.alert("Invalid Username!");
		return false;
	}
	
	if (pass == ""){
		window.alert("Please enter your Password!");
		return false;
	}
	else if (pass.match("'") == "'" || pass.match("=") == "="){
		window.alert("Invalid Password!");
		return false;
	}
	
	document.frmLogin.action = "redir.aspx"
	document.frmLogin.submit();
}