function showhide(){
    thePlayer=document.getElementById("FeedPlayerAudioSlim")
    if  (thePlayer.style.display=="none")
        thePlayer.style.display=""
    else
        thePlayer.style.display="none"
}
