//Class jjFormElement

//requires prototype.js

var jjFormElement = Class.create();

jjFormElement.prototype = 
{
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

// === CONSTRUCTOR ===
	initialize: function(inID, inDesc, inType)
	{
		this.id = inID;
		this.desc = inDesc;
		this.type = inType; //if undef or not one jjValidator recognizes,
							//it will be treated as alphanumeric
	}
				


//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~				
} //end class jjFormElement

