function ProgressBar(backColor,foreColor,width,step)
{
	this.background = backColor;
	this.foreground = foreColor;
	this.width = width;
	this.step = step;
	this.ID = 'progBar';
}

ProgressBar.prototype.create = function()
{
}

ProgressBar.prototype.showProgress = function(nValue)
{
}
