function abrir_img(imagen,title,copy,width,height,data1,data2,data3,extrahor,extraver) {

// variables

var dimensiones;
var propiedades;
var win=null;

// Asignamos los parámetros a variables
	source=imagen;
	cabecera=title;
	copyright=copy;
	hor=width;
	ver=height;
        superior=data1;
        desc=data2;
        inferior=data3;
        totalwidth=width+45+extrahor;
	totalheight=height+182+extraver;

        dimensiones="width="+totalwidth+",height="+totalheight;
	propiedades="resizable,scrollbars,menubar=no,location=no,"+dimensiones;

// Localiza la ventana
        win=window.open("","Fotos",dimensiones); 

        if (win) {
          win.close ();
        }
        
// Modelo apunta al modelo de foto con path relativo desde donde está el HTML que llama a la función abrir_img
// C:/Documents%20and%20Settings/Isidro/Mis%20documentos/Mis%20p%A0ginas%20Web/Internet/yahoo/esp/buceo/fotosub        

modelo="../foto.htm";

	window.open(modelo,"Fotos",propiedades);  
}

function musica(fichero,volumen) {
document.write('<embed id="SONIDO" type="music" src="'+fichero+'" volume="'+volumen+'" width="0" height="0">');
}