function draw()
{
	return this.code;
}

function PageElement(code)
{
	this.code = code;
	this.draw = draw;
}
