NAME
	Aware::Status - Make easy a status for you web application.

SYNOPSIS:

	use lib::Status;
	
	my $bar = new lib::Status;

	$bar->name("Status");
	$bar->setspace(4);
	$bar->seturlimages("/lib/images");
	$bar->addstep("Ticket", "12/10/2007");
	$bar->addstep("Confirm Payment", "12/11/2007");
	$bar->addstep("Send to you.", "12/12/2007", 1);
	$bar->addstep("Send",);
	$bar->addstep("Done",);

	my $code = $bar->show_status_bar();

	print $code;

DESCRIPTION
	Aware::Status provides a away to make a status bar to 
	you app. Its easy to use and modification.



