function MyPopUp(URL,ancho,alto) {
//	alert(URL+'\n\nAncho : '+ancho+'\tAlto : '+alto);
	var properties_mywindow = "toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=0,width="+ancho+",height="+alto+",top=100,left=100,";
    var ventanaSonido = window.open(URL,'Sonido',properties_mywindow);
	ventanaSonido.focus();
	document.returnValue=false;
}

