function SequencingRule (
			ConditionCombination,
			Action,
			RuleConditions){
	this.ConditionCombination = ConditionCombination;
	this.Action = Action;
	this.RuleConditions = RuleConditions;
}


SequencingRule.prototype.toString =  
		function(){
			
			/*
			var ret= "ConditionCombination=" + this.ConditionCombination + 
				", Action=" + this.Action +
				", Conditions: ";
			*/
			var ret = "If " + this.ConditionCombination + " condition(s) evaluate to true, then " + this.Action + ".  Conditions: <br>";	
										
			for (var condition in this.RuleConditions){
				ret += "{" + condition + "} " + this.RuleConditions[condition] + "<br>"; 
			}
			return ret;

			};
