var flag=true;
function showlyrics(ud){
if(flag){ 
ud.style.display="block";
flag=false;
}else{
ud.style.display="none";
flag=true;
}
}