1function placeImage(x)
2{
3 var div = document.getElementById("div_picture_right");
4
5 div.innerHTML = ""; // clear images
6
7 for (counter=1;counter<=x;counter++) {
8 var imagem=document.createElement("img");
9 imagem.src="borboleta/Borboleta"+counter+".png";
10 div.appendChild(imagem);
11 }
12}
13
14window.onload = function() {
15 placeImage(48);
16};