function Values()
{
	var value = new String();
	var displayValue = new String();

	this.setValue= value_setValue;
	this.setDisplayValue= value_setDisplayValue;


	this.getValue= value_getValue;
	this.getDisplayValue= value_getDisplayValue;

	this.print= value_print;
}

function value_setValue(value)
{
	this.value = value;
}

function value_setDisplayValue(displayValue)
{
	this.displayValue = displayValue;
}

function value_getValue()
{
	return this.value;
}

function value_getDisplayValue()
{
	return this.displayValue;
}
function value_print()
{
	alert('Printing ...');
	alert('Name is '+this.value);
	alert('displayValue is '+this.displayValue);
	alert('operator is '+this.operator);
}