function doLogin(user, pwd){
	if ( user=='beta' && pwd =='test'){
		document.forms[0].action="index1.htm";
	}else{
		document.forms[0].action="texol_login_error.htm";
	}
	return true;
}

