﻿<!-- 
function PlayIt(){
document.getElementById("music1").innerHTML='<object id="mediaPlayer" width="270" height="45" '
      +'classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" '
      +'codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" '
      +'standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">'
      +'<param name="fileName" value="'+document.getElementById('cancion').value+'">'
      +'<param name="animationatStart" value="true">'
      +'<param name="transparentatStart" value="true">'
      +'<param name="autoStart" value="true">'
      +'<param name="showControls" value="true">'
      +'<param name="loop" value="true">'
      +'<embed type="application/x-mplayer2" '
      +'pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" '
      +'bgcolor="darkblue" showcontrols="true" width="270" height="45" '
      +'src="'+document.getElementById('cancion').value+'" autostart="true" designtimesp="5311" loop="true">'
      +'</embed>'
+'</object>'
}
//-->
