function strThumb(thumb) {
		var thumb=new String(thumb);
		return thumb.substring(0, (thumb.length - 4))+"_thumb.jpg";
}

function montaGaleria(img1, img2, img3, img4, img5, img6) {
		document.write('<table border="0" cellspacing="5" cellpadding="0" align="center">');
		document.write('<tr><td>');
		document.write('<img id="imgLarge" border="0" alt="" width="335" height="301" src="'+img1+'" />');
		document.write('</td></tr>');
		document.write('<tr><td><div>');
		if(img1) {
			imgThumb = strThumb(img1);
			document.write('<div class="ImgzItemThumb">');
			document.write('<a href="javascript:Void(0);" onClick="abreImgz(\''+img1+'\')"><img src="'+imgThumb+'" alt="" name="imgLarge" width="60" height="55" border="0" id="imgThumb01" /></a>');
			document.write('</div>');
		}
		if(img2) {
			imgThumb = strThumb(img2);
			document.write('<div class="ImgzItemThumb">');
			document.write('<a href="javascript:Void(0);" onClick="abreImgz(\''+img2+'\')"><img src="'+imgThumb+'" alt="" name="imgLarge" width="60" height="55" border="0" id="imgThumb02" /></a>');
			document.write('</div>');
		}
		if(img3) {
			imgThumb = strThumb(img3);
			document.write('<div class="ImgzItemThumb">');
			document.write('<a href="javascript:Void(0);" onClick="abreImgz(\''+img3+'\')"><img src="'+imgThumb+'" alt="" name="imgLarge" width="60" height="55" border="0" id="imgThumb03" /></a>');
			document.write('</div>');
		}
		if(img4) {
			imgThumb = strThumb(img4);
			document.write('<div class="ImgzItemThumb">');
			document.write('<a href="javascript:Void(0);" onClick="abreImgz(\''+img4+'\')"><img src="'+imgThumb+'" alt="" name="imgLarge" width="60" height="55" border="0" id="imgThumb04" /></a>');
			document.write('</div>');
		}
		if(img5) {
			imgThumb = strThumb(img5);
			document.all.write('<div class="ImgzItemThumb">');
			document.write('<a href="javascript:Void(0);" onClick="abreImgz(\''+img5+'\')"><img src="'+imgThumb+'" alt="" name="imgLarge" width="60" height="55" border="0" id="imgThumb05" /></a>');
			document.write('</div>');
		}	
		document.write('</div></td></tr></table>');
}


function abreImgz(im) {
	document.getElementById("imgLarge").src=im;
}
function abreImagem(im) {
	document.getElementById("imgLarge").src=im;
}
