¿Te refieres al script que lo hace?
Código:
...
<input type=Button class="textGreyLittle" onClick=return(Expand()) value="Presiona para agregar otra foto">
...
<Script>
//Expand form with a new File fields if needed.
var nfiles = 5;
function Expand(){
nfiles++
var adh = 'Foto '+nfiles+': <input type="file" name="File'+nfiles+'" class=textGreyLittle Size=58><BR>';
files.insertAdjacentHTML('BeforeEnd',adh);
return false;
}
</Script>