function CargarFoto(img, ancho, alto) {
        posicionx=(screen.width-ancho)/2;
        posiciony=(screen.height-alto)/2;
  
        ventana = window.open("", "", "width=" + ancho + ",height=" + alto + ",left=" + posicionx + ", top=" + posiciony);
        
        with (ventana.document) {
             open();
             
             write("<html><head><title>Bianchi y Cia</title><meta http-equiv='Content-Type' content='text/html;'></head><body leftMargin=0 topMargin=0 marginwidth='0' marginheight='0'  bgcolor='#ffffff'><img name='n4a' src='" + img + "' width='" + ancho +"' height='" + alto + "' border='0' alt=''></body></html>");

             close();
        }
}
