		function AbreImagem( caminhoDocumento, nomeDocumento) {
		
			var img = new Image
			img.src = caminhoDocumento
			
			img.onLoad = imgLoaded(img, nomeDocumento);
		}
		
		function imgLoaded(img, nomeDocumento) {

			var Janela
			
			Janela = window.open( img.src, nomeDocumento, 
								  'width=' + (img.width + 20) + ', height=' + (img.height + 25) + ', toolbar=false, location=0, directories=0, status=0, menubar=0, sizable=1');
						
			Janela.Top = 0;
					
		}
