function Constants() {
	this.RowType = {	
  		PORTFOLIO:'PORTFOLIO',
		ONITSWAYUP:'ONITSWAYUP',
		PENDING:'PENDING',
		INDEX:'INDEX'
  		}; 
}

Constants.getInstance = function() {
	var cs = CountSystem.getInstance();
	if(!cs.constants){
		cs.constants = new Constants();
	}
	return cs.constants;
}
