function PlayIt(what){

document.getElementById('video').innerHTML='<object width="320" height="320" '

      +'classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" '

      +'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="url" value="'+what+'">'

      +'<param name="uiMode" value="full">'

      +'<param name="autoStart" value="true">'

      +'<param name="loop" value="true">'

      +'<embed type="application/x-mplayer2" '

      +'pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" '

      +'showcontrols="true" uimode="full" width="320" height="320" '

      +'src="'+what+'" autostart="true" loop="true">'

+'<\/object>';

}

function ascunde(id,flagit) {
if (flagit=="1"){
if (document.layers) document.layers[''+id+''].visibility = "show"
else if (document.all) document.all[''+id+''].style.visibility = "visible"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
}
else
if (flagit=="0"){
if (document.layers) document.layers[''+id+''].visibility = "hide"
else if (document.all) document.all[''+id+''].style.visibility = "hidden"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
}
}
