function Component(c,va,ha){
	this.content=c;
	this.verticalAlignment=va;
	this.horizontalAlignment=ha;
}
function component_getHtml(){
	return this.content;
}
Component.prototype.getHtml=component_getHtml;