
// function setBgColor (id, color) {
//	alert(id);
//	alert(color);
//  if (document.layers)
//    document[id].bgColor = color == 'transparent' ? null : color;
//  else if (document.getElementById)
//    document.getElementById(id).style.backgroundColor = color;	
//  else if (document.all)
//    document.all[id].style.backgroundColor = color;
//}

function play(media){
document.getElementById('mediaplayer').innerHTML=
'<object classid="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95"'
+'type="application/x-oleobject" width="308" height="231">'
+'<param name="showControls" value="false">'
+'<param name="fileName" value="'+media+'">'
+'<embed type="application/x-mplayer2" width="308" height="231"'
+'showcontrols="false" src="'+media+'"><\/embed><\/object>'

//setBgColor('tvplayer','#000000');
}
