/*
 * DO NOT EDIT THIS FILE
 * DO NOT EDIT THIS FILE
 *
 * AUTHOR:	Wesley Ben Cradic
 * COPYRIGHT:	copyright©2006 koala-pierrot Systems™
 * DATE:	11:35 AM 9/3/2006
 *
 *
 *
 * CLASS Component
 *
 *
 *
 * constructor
 *	Component(String, String, String)
 *
 *
 *
 * properties
 *	String		content;
 *	String		horizontalAlignment
 *	String		verticalAlignment
 *
 *
 *
 * methods
 *	String		getHtml()
 *
 *
 *
 */
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;