function CheckLoginForm(){
	
	if ( ( $('#log_username').val().match(/^( )*$/) ) || ( $('#log_password').val().match(/^( )*$/) ) ) {
		alert(Messages[10]);
		return false;
	}
	
	return true;

}