/**
 * @author pfigueiredo
 */
KText.prototype = new KInput;
KText.prototype.constructor = KText;
function KText(parent, id) {
	KInput.call(this, parent, id, 'text');
	this.panel.className += ' KTextPanel';
}
