Use a javascript event function with your froms submit button.
Put this in your page head:
<script language="JavaScript">
<!--
function showProgress() {
document.getElementById("progress").style.visibility = 'visible';
document.getElementById("submit").disabled = true;
}
//-->
</script>
Make your submit button call the show progress event function with an onclick:
<input type="submit" name="submit" value="Upload Picture" onclick="javascript:showProgress();">
Then stick this next to your submit button:
<span id="progress" style="visibility:hidden"><img src="http://battlescrypt.scrypted.com/images/busy_blue.gif"/>
That shouldw work out fine for you! Feel free to use that image from my server.