<!--
/*
FUNCION PARA COPIAR
*/

//specify whether contents should be auto copied to clipboard (memory)
//Applies only to IE 4+
//0=no, 1=yes
var copytoclip=1

function HighlightAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&&copytoclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Código copiado en el portapapeles!"
setTimeout("window.status=''",1800)
}
}
/*FUNCION DE EL BUSCADOR DE MELODIAS POR ORDEN ALFABETICO*/
function melodiasabc(tabla, n)
{	
url="buscadormelodias/melodiasabc.php?tabla=" + tabla + "&n=" + n;
not=open(url,null,"top=100,left=250,width=450,height=390,toolbar=no,directories=no,menubar=no,status=no,scrollbars=yes");}
//-->
