function test (local, titulo, largura, altura) { 
     NovaJanela = window.open ('', 'OutraJanela', 'width='+ largura +',height='+ altura +'')
     NovaJanela.document.open() 
     NovaJanela.document.write ("<html><head><title>"+ titulo +"") 
     NovaJanela.document.write ("</title></head><body bgcolor='white' topmargin='0' leftmargin='0'>")
     NovaJanela.document.write ("<img width="+ largura +" height="+ altura +" src="+ local +">")
     NovaJanela.document.write ("</body></html>") 
     NovaJanela.document.close()
}