<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<font size="-1"><font face="Verdana">well my english its very poor but
i wrote some ideas about the progress meters.<br>
thinking about i found to tweak a little bit this progress meters to
generate charts<br>
<br>
the code:<br>
<br>
<progress type="bar" name="loaderA" action="page_to_load.php"
direction="horizontal" maxvalue="100" minvalue="0" /><br>
<br>
type:<br>
    bar<br>
    status-bar<br>
    numeric<br>
    numeric-bar<br>
    numeric-status<br>
    <br>
name:<br>
    item name reference<br>
    <br>
action:<br>
    page, file, behavior to attach the progress meter<br>
    <br>
direction:<br>
    horizontal<br>
    vertical<br>
    <br>
maxvalue<br>
    maximun value<br>
<br>
min value<br>
    minimun value<br>
<br>
the pages can handle some type of meta tag or server header response
attached to the name of the progress meter     <br>
    <br>
<meta progress="loaderA" value="50" /><br>
<br>
with dynamic lenguajes can handle like this:<br>
<br>
<?php<br>
header("progress:loaderA:50");<br>
?><br>
</font></font><br>
</body>
</html>