//Objeto Texto
function objElemento()
{
	this.Tipo="input";
	//this.TipoElemento="";
	//this.Nombre="";	

	this.CreaElemento=function()
	{
		this.Crea();
		this.Obj.type=this.TipoElemento;
		this.Obj.name=this.Nombre;
	}

	this.Pagina=function(NmbPag)
	{
		this.Obj.setAttribute("nmbpag",NmbPag);
	}

}
objElemento.prototype=new Objecto();

function objTexto()
{
	this.TipoElemento="text";
}

function objBoton()
{
	this.TipoElemento="button";
}

function objCheckBox()
{
	this.TipoElemento="checkbox";
}

objTexto.prototype=new objElemento();
objBoton.prototype=new objElemento();
objCheckBox.prototype=new objElemento();

