var action = []
action["brandId"] = {
	Displayer : "vbrandId",
	RegEx : "Integer",
	Indisp : true,
	MsgDefault : '',
	MsgWarning : '请选择企业品牌！'
	}
action["content"] = {
	Displayer : "vcontent",
	RegEx : null,
	Indisp : true,
	MsgDefault : '请发表评论内容!',
	MsgWarning : '评论内容不能为空！'
	}
	var v = new validator()
	window.onload = function(){
			v.action=action;
			v.SucceedMsg = "";
			v.onSubmit = function(){
				$("SubmitButton").disabled="disabled";
			}
			v.IndispMsg = "<strong>此项必填</strong> ";
			v.bindElemet();
			v.bindForm('qpform');
	}
