Ah I see, the bar is a simple table with images. The first image, label_progress_progressbar.gif, is the image containing the text "PROGRESS BAR >>". The other images are for helping the bar look better. label_progress_status.gif is the picture that controlls the length of the orange status bar. To modify the length of the bar you should change the width of the image.
<TABLE WIDTH=527 HEIGHT=13 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD ROWSPAN=3 HEIGHT=13>
<IMG SRC="https://www.legalzoom.com/images/label_progress_progressbar.gif" height=13 width=100></TD><TD HEIGHT=1 WIDTH=427>
<IMG SRC="https://www.legalzoom.com/images/label_progress_topborder.gif" height=1 width=427>
</TD>
</TR>
<TR>
<TD bgcolor="#cccccc" align=left HEIGHT=8 WIDTH=427>
<IMG SRC="https://www.legalzoom.com/images/label_progress_status.gif" height=8 width=39>
</TD>
</TR>
<TR>
<TD WIDTH=427 HEIGHT=4>
<IMG SRC="https://www.legalzoom.com/images/label_progress_ticks.gif" width=427 HEIGHT=4>
</TD>
</TR>
</TABLE>
Well, there is no copyright sign there... so copying stuff from their site should be legal. (I think)
Change the width:
<IMG SRC="https://www.legalzoom.com/images/label_progress_status.gif" height=8 width= X

>
X = the width in pixels of the progress bar.
Now, to make the thing dynamic you could use javascript or a server based script, such as PHP.
example progress.php:
progress.php
<HTML>
<HEAD>
</HEAD>
<BODY>
<TABLE WIDTH=527 HEIGHT=13 CELLPADDING=0 CELLSPACING=0>
<TR><TD ROWSPAN=3 HEIGHT=13><IMG SRC="https://www.legalzoom.com/images/label_progress_progressbar.gif" height=13 width=100></TD><TD HEIGHT=1 WIDTH=427><IMG SRC="https://www.legalzoom.com/images/label_progress_topborder.gif" height=1 width=427></TD>
</TR>
<TR>
<TD bgcolor="#cccccc" align=left HEIGHT=8 WIDTH=427><IMG SRC="https://www.legalzoom.com/images/label_progress_status.gif" height=8 width=
<?
$X = $_GET["X"];
echo $X;
?>
></TD></TR>
<TR><TD WIDTH=427 HEIGHT=4><IMG SRC="https://www.legalzoom.com/images/label_progress_ticks.gif" width=427 HEIGHT=4></TD></TR>
</TABLE>
<A href = "progress.php?X=30">Start over with filling my form.</A>
<BR>
<A href = "progress.php?X=150">Please go to the second part of the form.</A>
<BR>
<A href = "progress.php?X=300">I only want to fill in the important details, skip the optional part.</A>
<BR>
<A href = "progress.php?X=425">Please submit my form now, I am done.</A>
<BR>
</BODY>
</HTML>
good luck,
Steven Chang