function imagens(){

	var img=100+Math.round(40*(Math.random()));

    var image ="<p><center><a href=\"javascript:PopupPic('img/fotos/Foto"+img+".JPG')\"> <img src=\"img/amostras/Foto"+img+".JPG\"/></a></center></p>";				

	

	return image;

}



function imagensIndex(num){

    var image ="<p><center><a href=\"javascript:PopupPic('img/fotos/Foto"+num+".JPG')\"> <img src=\"img/amostras/Foto"+num+".JPG\"/></a></center></p>";				

	return image;

}



function print(n){

	for (i=0;i<n;i++)

		document.write(imagens());

}



function printIndex(n){

	var num;

	for (i=0;i<n;i++){

		if (i==0) num=139;

		if (i==1) num=113;

		if (i==2) num=100;

		document.write(imagensIndex(num));

	}

}



function PopupPic(sPicURL) {

	window.open( "popup.php?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=600"); 

}