function ampliafoto(i,ancho,alto){
	prop = 'toolbar=no,location=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width='
	prop += ancho
	prop += ',height='
	prop += alto
	prop += ',left=100,top=130,alwaysRaised=yes'
	newWindow = window.open('','',prop)
	if (newWindow != null) {
		var newContent ='<HTML><HEAD><TITLE>Infosegovia.com</TITLE></HEAD>'
		newContent += '<BODY bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">'
		newContent += '<img name="img" src='
        newContent += fotos[i] 
        newContent += ' width='
        newContent += ancho
        newContent += ' height='
        newContent += alto
        newContent += '></div></BODY></HTML>'
		newWindow.document.write(newContent)
	}
}  